@@ -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" ,
0 commit comments