Skip to content

Commit 4c7d85a

Browse files
authored
eng: Don't lint coverage output directory (#2237)
1 parent 2682c79 commit 4c7d85a

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

eng/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

eng/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@microsoft/vscode-azext-eng",
33
"author": "Microsoft Corporation",
4-
"version": "1.0.0-alpha.14",
4+
"version": "1.0.0-alpha.15",
55
"description": "Engineering package for Azure extensions for VS Code",
66
"repository": {
77
"type": "git",

eng/src/eslint/eslintConfigs.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,7 @@ export function lazyImportRuleConfig(patterns: string[]): EslintConfig {
225225
* @note This is exported but not meant to be used in isolation, rather as a building block for other configs
226226
*/
227227
export const ignoresConfig: EslintConfig = globalIgnores([
228+
'coverage/**',
228229
'node_modules/**',
229230
'out/**',
230231
'dist/**',
@@ -233,8 +234,6 @@ export const ignoresConfig: EslintConfig = globalIgnores([
233234
'.vscode-test.mjs',
234235
'esbuild*.mjs',
235236
'eslint.config.mjs',
236-
'main.js',
237-
'main.mjs',
238237
'**/test/testProjects/**'
239238
]);
240239

0 commit comments

Comments
 (0)