Skip to content

Commit 6dffeb4

Browse files
authored
chore: fix violations of eslint-plugin-eslint-plugin v6 (#572)
1 parent 2f409c6 commit 6dffeb4

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

eslint.config.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,6 @@ module.exports = [
128128
"no-useless-escape": "error",
129129
"no-useless-return": "error",
130130
"no-var": "error",
131-
"no-warning-comments": "error",
132131
"no-with": "error",
133132
"operator-assignment": ["error", "always"],
134133
"prefer-const": "error",
@@ -161,13 +160,17 @@ module.exports = [
161160
"replacedBy",
162161
],
163162
],
163+
"eslint-plugin/no-meta-schema-default": "off", // TODO: enable this.
164+
"eslint-plugin/require-meta-default-options": "off", // TODO: enable this.
165+
"eslint-plugin/require-meta-docs-recommended": "off", // We're not currently using this property.
164166
"eslint-plugin/require-meta-docs-url": [
165167
"error",
166168
{
167169
pattern:
168170
"https://github.com/platinumazure/eslint-plugin-qunit/blob/main/docs/rules/{{name}}.md",
169171
},
170172
],
173+
"eslint-plugin/require-meta-schema-description": "off", // TODO: enable this.
171174

172175
// eslint-plugin-node
173176
"node/no-missing-require": [
@@ -191,7 +194,6 @@ module.exports = [
191194
"unicorn/filename-case": "off",
192195
"unicorn/no-array-reduce": "off",
193196
"unicorn/no-null": "off",
194-
// eslint-disable-next-line no-warning-comments
195197
"unicorn/prefer-at": "off", // TODO: enable once we raise Node requirement to v16.6.0
196198
"unicorn/prefer-module": "off",
197199
"unicorn/prevent-abbreviations": "off",

package-lock.json

Lines changed: 5 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"eslint-config-prettier": "^9.1.0",
4141
"eslint-doc-generator": "^2.2.2",
4242
"eslint-plugin-eslint-comments": "^3.2.0",
43-
"eslint-plugin-eslint-plugin": "^6.4.0",
43+
"eslint-plugin-eslint-plugin": "^6.5.0",
4444
"eslint-plugin-markdown": "^3.0.1",
4545
"eslint-plugin-mocha": "^10.2.0",
4646
"eslint-plugin-node": "^11.1.0",

0 commit comments

Comments
 (0)