We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5caaf49 commit da3cd1bCopy full SHA for da3cd1b
packages/setup/const/commands.ts
@@ -19,7 +19,7 @@ const COMMANDS = {
19
};
20
21
const filteredCommands = Object.entries(COMMANDS)
22
- .filter(([key]) => ![COMMANDS.AIRBNB, COMMANDS.GOOGLE, COMMANDS.XO].includes(key))
+ .filter(([key]) => ![COMMANDS.AIRBNB, COMMANDS.GOOGLE, COMMANDS.XO].includes(key.toLowerCase()))
23
.map(([key, value]) => ({ name: key, value }));
24
const filteredCommandChoices = filteredCommands.map(command => command.value);
25
0 commit comments