Skip to content

Commit fa88e8d

Browse files
committed
fix: prettier
1 parent 5c0c586 commit fa88e8d

File tree

8 files changed

+16
-7
lines changed

8 files changed

+16
-7
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ Continue is quickly adding features, and we'd love to hear which are the most im
6060
an enhancement are:
6161

6262
- Create an issue
63+
6364
- First, check whether a similar proposal has already been made
6465
- If not, [create an issue](https://github.com/continuedev/continue/issues)
6566
- Please describe the enhancement in as much detail as you can, and why it would be useful
@@ -145,6 +146,7 @@ npm i -g vite
145146
`install-all-dependencies`
146147

147148
2. Start debugging:
149+
148150
1. Switch to Run and Debug view
149151
2. Select `Launch extension` from drop down
150152
3. Hit play button

extensions/cli/AGENTS.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,25 +18,30 @@ This is a CLI tool for Continue Dev that provides an interactive AI-assisted dev
1818
### Core Components
1919

2020
1. **Entry Point** (`src/index.ts`): Main CLI logic with two modes:
21+
2122
- **Headless mode**: Non-interactive mode for automation/CI
2223
- **TUI mode**: Terminal User Interface using Ink/React
2324
- **Standard mode**: Traditional readline-based chat interface
2425

2526
2. **Authentication** (`src/auth/`): WorkOS-based authentication system
27+
2628
- `ensureAuth.ts`: Handles authentication flow
2729
- `workos.ts`: WorkOS configuration and token management
2830

2931
3. **Continue SDK Integration** (`src/continueSDK.ts`): Initializes the Continue SDK client with:
32+
3033
- API key authentication
3134
- Assistant configuration (slug-based)
3235
- Organization support
3336

3437
4. **Terminal UI** (`src/ui/`): React/Ink-based TUI components
38+
3539
- `TUIChat.tsx`: Main chat interface component
3640
- `UserInput.tsx`: Input handling with multi-line support
3741
- `TextBuffer.ts`: Text display utilities
3842

3943
5. **Tools System** (`src/tools/`): Built-in development tools including:
44+
4045
- File operations (read, write, list)
4146
- Code search functionality
4247
- Terminal command execution

extensions/cli/CHAT_HISTORY_SERVICE_MIGRATION_PLAN.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -299,6 +299,7 @@ If issues arise during migration:
299299
1. **Streaming integration**: Most complex change
300300
- Mitigation: Extensive testing, gradual rollout
301301
2. **Remote mode**: Different state management
302+
302303
- Mitigation: Test thoroughly, maintain compatibility
303304

304305
3. **Performance**: Large histories might cause issues

extensions/cli/spec/config-loading.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,13 @@ This document specifies the behavior of the CLI's configuration loading system,
2323
**When CLI is invoked, config source is determined in this order:**
2424

2525
1. **CLI `--config` Flag** (highest priority)
26+
2627
- File path (starts with `.`, `/`, `~`): Loads local YAML file
2728
- Assistant slug (`owner/package`): Fetches from Continue platform
2829
- Overrides any saved preferences
2930

3031
2. **Saved Config URI** (if no `--config` flag)
32+
3133
- Retrieved from authentication config
3234
- Converts `file://` URIs back to file paths
3335
- Converts `slug://` URIs back to assistant slugs

extensions/cli/spec/onboarding.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ When a user first runs `cn` in interactive mode, they will be taken through "onb
88

99
1. If the --config flag is provided, load this config
1010
2. Otherwise, we will present the user with two options:
11+
1112
- Log in with Continue: log them in, which will automatically create their assistant and then we can load the first assistant from the first org
1213
- Enter your Anthropic API key: let them enter the key, and then either create a ~/.continue/config.yaml with the following contents OR update the existing config.yaml to add the model
1314

extensions/vscode/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

extensions/vscode/src/diff/vertical/handler.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -343,8 +343,8 @@ export class VerticalDiffHandler implements vscode.Disposable {
343343

344344
// Then, we insert our diff lines
345345
await this.editor.edit((editBuilder) => {
346-
(editBuilder.replace(this.range, replaceContent),
347-
{ undoStopAfter: false, undoStopBefore: false });
346+
editBuilder.replace(this.range, replaceContent),
347+
{ undoStopAfter: false, undoStopBefore: false };
348348
});
349349

350350
// Lastly, we apply decorations

gui/src/components/modelSelection/ModelCard.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -147,9 +147,7 @@ function ModelCard(props: ModelCardProps) {
147147
<h3>{props.title}</h3>
148148
</div>
149149

150-
{props.tags?.map((tag, i) => (
151-
<ModelProviderTag key={i} tag={tag} />
152-
))}
150+
{props.tags?.map((tag, i) => <ModelProviderTag key={i} tag={tag} />)}
153151

154152
<p>{props.description}</p>
155153

0 commit comments

Comments
 (0)