diff --git a/rules/common.rule.js b/rules/common.rule.js index 3e54982..a9b111e 100644 --- a/rules/common.rule.js +++ b/rules/common.rule.js @@ -81,6 +81,7 @@ export default tseslint.config( { files: ['**/*.json'], rules: { + '@stylistic/comma-dangle': ['error', 'never'], 'jsonc/auto': 'error', 'jsonc/sort-keys': ['error', 'asc'], }, diff --git a/tsconfig.json b/tsconfig.json index 3005ae2..c4b1605 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -9,7 +9,7 @@ "outDir": "dist", "rootDir": ".", "sourceMap": true, - "target": "ESNext", + "target": "ESNext" }, - "exclude": ["**/node_modules", "**/.*/", "**/dist/"], + "exclude": ["**/node_modules", "**/.*/", "**/dist/"] }