Skip to content

Commit cc59a53

Browse files
committed
style: rearranged preferences
1 parent 0787eac commit cc59a53

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/config-collection/choice-builders/language-choices.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import type { ProgrammingLanguage } from "../../types.js";
1313
*/
1414
export const buildLanguageChoices = () => {
1515
return [
16-
{ name: "Python", value: "python" as ProgrammingLanguage },
1716
{ name: "TypeScript", value: "typescript" as ProgrammingLanguage },
17+
{ name: "Python", value: "python" as ProgrammingLanguage },
1818
];
1919
};

src/providers/coding-assistants/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ export interface CodingAssistantProvider {
5151
}
5252

5353
const PROVIDERS: Record<string, CodingAssistantProvider> = {
54+
kilocode: KilocodeCodingAssistantProvider,
5455
"claude-code": ClaudeCodingAssistantProvider,
5556
cursor: CursorCodingAssistantProvider,
56-
kilocode: KilocodeCodingAssistantProvider,
5757
none: NoneCodingAssistantProvider,
5858
};
5959

src/providers/languages/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ export interface LanguageProvider {
2828
}
2929

3030
const PROVIDERS: Record<string, LanguageProvider> = {
31-
python: PythonLanguageProvider,
3231
typescript: TypeScriptLanguageProvider,
32+
python: PythonLanguageProvider,
3333
};
3434

3535
/**

0 commit comments

Comments
 (0)