Skip to content

Commit 667f0d1

Browse files
committed
Fix for super-linter
1 parent 011593d commit 667f0d1

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

tools/linters/.eslintrc.js

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
module.exports = {
2-
extends: ["json:recommended"],
32
ignorePatterns: ["!/tools/linters/.eslintrc.yml", "!/tools/linters/.stylelintrc.json"],
43
parserOptions: {
54
ecmaVersion: 2015,
65
sourceType: "module"
7-
}
6+
},
7+
overrides: [
8+
{
9+
files: ["*.json"],
10+
extends: ["plugin:jsonc/recommended-with-json"],
11+
parser: "jsonc-eslint-parser",
12+
}
13+
]
814
};

0 commit comments

Comments
 (0)