We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 011593d commit 667f0d1Copy full SHA for 667f0d1
1 file changed
tools/linters/.eslintrc.js
@@ -1,8 +1,14 @@
1
module.exports = {
2
- extends: ["json:recommended"],
3
ignorePatterns: ["!/tools/linters/.eslintrc.yml", "!/tools/linters/.stylelintrc.json"],
4
parserOptions: {
5
ecmaVersion: 2015,
6
sourceType: "module"
7
- }
+ },
+ overrides: [
8
+ {
9
+ files: ["*.json"],
10
+ extends: ["plugin:jsonc/recommended-with-json"],
11
+ parser: "jsonc-eslint-parser",
12
+ }
13
+ ]
14
};
0 commit comments