Skip to content

Commit 12f1dc0

Browse files
committed
Remove remnant prettier configuration in the eslint file -- this is what revealed prettier behavior via eslint to be completely out of sync with the on-disk prettier config
1 parent 6867c25 commit 12f1dc0

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

eslint.config.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ module.exports = [
2828
'plugin:eslint-comments/recommended',
2929
'plugin:import/errors',
3030
'plugin:import/warnings',
31-
'plugin:prettier/recommended',
3231
'prettier'
3332
),
3433

@@ -199,7 +198,6 @@ module.exports = [
199198
'no-unused-labels': 'off',
200199
'no-unused-vars': 'off',
201200
'no-useless-constructor': 'off',
202-
'prettier/prettier': ['error', { trailingComma: 'none' }],
203201
'unicorn/consistent-function-scoping': 'off',
204202
'unicorn/filename-case': 'off',
205203
},

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"lint:eslint-docs": "pnpm update:eslint-docs --check",
4444
"lint:eslint-docs:fix": "npm-run-all \"update:eslint-docs\"",
4545
"lint:fix": "npm-run-all \"lint:*:fix\" && pnpm format",
46-
"lint:js": "eslint .",
46+
"lint:js": "eslint \"./{lib,docs,tests}/**/*\"",
4747
"lint:prettier": "prettier . --check",
4848
"lint:js:fix": "pnpm lint:js --fix",
4949
"lint:package-json": "npmPkgJsonLint .",

0 commit comments

Comments
 (0)