Const
Peek
'!(shims)/(*.(ts|js|cts|cjs|mts|mjs|jsx|tsx)|tsconfig*.json)?(x)': tsc, '!(shims)/*.(ts|js|cts|cjs|mts|mjs)': [eslintSingleFileCommand, prettierCommand], '*.css': ['stylelint', prettierCommand], '*.scss': ['stylelint --customSyntax=postcss-scss', prettierCommand], '*.(html|svelte|vue|astro|xml|php)': ['stylelint --customSyntax=postcss-html'], '*.(html|vue|astro|xml)': [prettierCommand], '(*.json|.eslintrc|.prettierrc|.stylelintrc|.markdownlintrc)': [ eslintSingleFileCommand, prettierCommand, ], '*.svelte': ['svelte-check', prettierCommand], '*.md': [markdownCommand, prettierCommand], '*.(yml|yaml)': [prettierCommand], Copy
'!(shims)/(*.(ts|js|cts|cjs|mts|mjs|jsx|tsx)|tsconfig*.json)?(x)': tsc, '!(shims)/*.(ts|js|cts|cjs|mts|mjs)': [eslintSingleFileCommand, prettierCommand], '*.css': ['stylelint', prettierCommand], '*.scss': ['stylelint --customSyntax=postcss-scss', prettierCommand], '*.(html|svelte|vue|astro|xml|php)': ['stylelint --customSyntax=postcss-html'], '*.(html|vue|astro|xml)': [prettierCommand], '(*.json|.eslintrc|.prettierrc|.stylelintrc|.markdownlintrc)': [ eslintSingleFileCommand, prettierCommand, ], '*.svelte': ['svelte-check', prettierCommand], '*.md': [markdownCommand, prettierCommand], '*.(yml|yaml)': [prettierCommand],
const prettierCommand = 'prettier --check';const tscCommand = 'tsc --noEmit';const eslintSingleFileCommand = 'eslint --max-warnings=0 --no-ignore';const markdownCommand = 'remark --frail --no-stdout --silently-ignore'; Copy
const prettierCommand = 'prettier --check';const tscCommand = 'tsc --noEmit';const eslintSingleFileCommand = 'eslint --max-warnings=0 --no-ignore';const markdownCommand = 'remark --frail --no-stdout --silently-ignore';
Peek