@@ -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,16 @@ module.exports = [
161160 "replacedBy" ,
162161 ] ,
163162 ] ,
163+ "eslint-plugin/require-meta-default-options" : "off" , // TODO: enable this.
164+ "eslint-plugin/require-meta-docs-recommended" : "off" , // We're not currently using this property.
164165 "eslint-plugin/require-meta-docs-url" : [
165166 "error" ,
166167 {
167168 pattern :
168169 "https://github.com/platinumazure/eslint-plugin-qunit/blob/main/docs/rules/{{name}}.md" ,
169170 } ,
170171 ] ,
172+ "eslint-plugin/require-meta-schema-default" : "off" , // TODO: enable this.
171173
172174 // eslint-plugin-node
173175 "node/no-missing-require" : [
@@ -191,7 +193,6 @@ module.exports = [
191193 "unicorn/filename-case" : "off" ,
192194 "unicorn/no-array-reduce" : "off" ,
193195 "unicorn/no-null" : "off" ,
194- // eslint-disable-next-line no-warning-comments
195196 "unicorn/prefer-at" : "off" , // TODO: enable once we raise Node requirement to v16.6.0
196197 "unicorn/prefer-module" : "off" ,
197198 "unicorn/prevent-abbreviations" : "off" ,
0 commit comments