We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63aa46c commit 3cd4dadCopy full SHA for 3cd4dad
packages/cli/src/utils/editor.ts
@@ -178,7 +178,7 @@ export async function selectEditor({
178
value: option.id,
179
hint: option.targetDir,
180
}));
181
- const noneOption = {
+ const otherOption = {
182
label: 'Other',
183
value: null,
184
hint: 'Skip writing editor configs',
@@ -190,7 +190,7 @@ export async function selectEditor({
190
'gray',
191
'Writes editor config files to enable recommended extensions and Oxlint/Oxfmt integrations.',
192
),
193
- options: [...editorOptions, noneOption],
+ options: [...editorOptions, otherOption],
194
initialValue: 'vscode',
195
});
196
0 commit comments