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.
2 parents ac940c1 + 19c680e commit c6a1401Copy full SHA for c6a1401
.eslintrc.json
@@ -231,10 +231,13 @@
231
"*.json5"
232
],
233
"extends": [
234
- "plugin:jsonc/recommended-with-jsonc"
+ "plugin:jsonc/recommended-with-json5"
235
236
"rules": {
237
- "no-irregular-whitespace": "error",
+ // The ESLint core no-irregular-whitespace rule doesn't work well in JSON
238
+ // See: https://ota-meshi.github.io/eslint-plugin-jsonc/rules/no-irregular-whitespace.html
239
+ "no-irregular-whitespace": "off",
240
+ "jsonc/no-irregular-whitespace": "error",
241
"no-trailing-spaces": "error",
242
"jsonc/comma-dangle": [
243
"error",
0 commit comments