@@ -128,7 +128,6 @@ module.exports = [
128
128
"no-useless-escape" : "error" ,
129
129
"no-useless-return" : "error" ,
130
130
"no-var" : "error" ,
131
- "no-warning-comments" : "error" ,
132
131
"no-with" : "error" ,
133
132
"operator-assignment" : [ "error" , "always" ] ,
134
133
"prefer-const" : "error" ,
@@ -161,13 +160,17 @@ module.exports = [
161
160
"replacedBy" ,
162
161
] ,
163
162
] ,
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.
164
166
"eslint-plugin/require-meta-docs-url" : [
165
167
"error" ,
166
168
{
167
169
pattern :
168
170
"https://github.com/platinumazure/eslint-plugin-qunit/blob/main/docs/rules/{{name}}.md" ,
169
171
} ,
170
172
] ,
173
+ "eslint-plugin/require-meta-schema-description" : "off" , // TODO: enable this.
171
174
172
175
// eslint-plugin-node
173
176
"node/no-missing-require" : [
@@ -191,7 +194,6 @@ module.exports = [
191
194
"unicorn/filename-case" : "off" ,
192
195
"unicorn/no-array-reduce" : "off" ,
193
196
"unicorn/no-null" : "off" ,
194
- // eslint-disable-next-line no-warning-comments
195
197
"unicorn/prefer-at" : "off" , // TODO: enable once we raise Node requirement to v16.6.0
196
198
"unicorn/prefer-module" : "off" ,
197
199
"unicorn/prevent-abbreviations" : "off" ,
0 commit comments