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 66ba23f commit fa746fbCopy full SHA for fa746fb
packages/svelte-check/src/options.ts
@@ -65,6 +65,9 @@ export function parseOptions(cb: (opts: SvelteCheckCliOptions) => any) {
65
'Filters the diagnostics to display. `error` will output only errors while `warning` will output warnings and errors.',
66
'warning'
67
)
68
+ // read by sade and preprocessor like sass
69
+ .option('--color', 'Force enabling of color output', false)
70
+ .option('--no-color', 'Force disabling of color output', false)
71
.action((opts) => {
72
const workspaceUri = getWorkspaceUri(opts);
73
const tsconfig = getTsconfig(opts, workspaceUri.fsPath);
0 commit comments