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.
1 parent a049bf5 commit b964f68Copy full SHA for b964f68
lib/configs/base.ts
@@ -4,6 +4,11 @@ export = {
4
{
5
files: ["*.json", "*.json5"],
6
parser: require.resolve("jsonc-eslint-parser"),
7
+ rules: {
8
+ // ESLint core rules known to cause problems with JSON.
9
+ strict: "off",
10
+ "no-unused-expressions": "off",
11
+ },
12
},
13
],
14
}
package.json
@@ -1,6 +1,6 @@
1
2
"name": "eslint-plugin-jsonc",
3
- "version": "0.5.0",
+ "version": "0.5.1",
"description": "ESLint plugin for JSON, JSONC and JSON5 files.",
"main": "dist/index.js",
"typescript": {
0 commit comments