@@ -79,22 +79,22 @@ export default defineConfig([
7979 // relax missing import rule to warning, as we sometimes have optional dependencies
8080 // import "../foo" will braise a warning ,
8181 // import "../foo.js" is the correct way to import a file that may not exist
82- "n/no-missing-import" : "warn" ,
82+ "n/no-missing-import" : "off" , // https://github.com/eclipse-thingweb/node-wot/issues/1428
8383
84- "n/no-unsupported-features/node-builtins" : "warn" ,
85- "n/no-extraneous-import" : "warn" ,
86- "n/no-deprecated-api" : "warn" ,
87- "n/no-unpublished-import" : "warn" ,
88- "n/no-process-exit" : "warn" ,
84+ "n/no-unsupported-features/node-builtins" : "off" , // https://github.com/eclipse-thingweb/node-wot/issues/1430
85+ "n/no-extraneous-import" : "off" , // https://github.com/eclipse-thingweb/node-wot/issues/1430
86+ "n/no-deprecated-api" : "off" , // https://github.com/eclipse-thingweb/node-wot/issues/1430
87+ "n/no-unpublished-import" : "off" , // https://github.com/eclipse-thingweb/node-wot/issues/1430
88+ "n/no-process-exit" : "off" , // https://github.com/eclipse-thingweb/node-wot/issues/1430
8989 "n/hashbang" : "warn" ,
9090
9191 // *************** Ensure that only used dependencies are imported ***************
92- "extraneous-dependencies/no-extraneous-dependencies" : "warn" ,
92+ "extraneous-dependencies/no-extraneous-dependencies" : "off" , // https://github.com/eclipse-thingweb/node-wot/issues/1430
9393
9494 // *************** Code style and best practices ***************
9595 "unused-imports/no-unused-imports" : "error" ,
9696 "unused-imports/no-unused-vars" : [
97- "warn" ,
97+ "off" , // // https://github.com/eclipse-thingweb/node-wot/issues/1430
9898 {
9999 args : "none" ,
100100 varsIgnorePattern : "Test" ,
@@ -121,21 +121,21 @@ export default defineConfig([
121121 "@typescript-eslint/no-use-before-define" : "error" ,
122122 "@typescript-eslint/no-unused-vars" : "off" ,
123123 "@typescript-eslint/no-unused-expressions" : "off" ,
124- "@typescript-eslint/no-require-imports" : "warn" ,
125- "@typescript-eslint/prefer-nullish-coalescing" : "warn" ,
126- "@typescript-eslint/no-empty-object-type" : "warn" ,
127- "@typescript-eslint/no-floating-promises" : "warn" ,
124+ "@typescript-eslint/no-require-imports" : "off" , // https://github.com/eclipse-thingweb/node-wot/issues/1430
125+ "@typescript-eslint/prefer-nullish-coalescing" : "off" , // https://github.com/eclipse-thingweb/node-wot/issues/1430
126+ "@typescript-eslint/no-empty-object-type" : "off" , // https://github.com/eclipse-thingweb/node-wot/issues/1430
127+ "@typescript-eslint/no-floating-promises" : "off" , // https://github.com/eclipse-thingweb/node-wot/issues/1430
128128
129129 // **************** Enforce usage of `const` over `let` wherever possible, to prevent accidental reassignments
130- "prefer-const" : "warn" ,
130+ "prefer-const" : "off" , // https://github.com/eclipse-thingweb/node-wot/issues/1430
131131
132132 // *************** Other rules ***************
133133 "no-restricted-globals" : "error" ,
134134 "no-restricted-properties" : "error" ,
135135
136136 "no-use-before-define" : "error" ,
137137
138- "no-unused-private-class-members" : "warn" ,
138+ "no-unused-private-class-members" : "off" , // https://github.com/eclipse-thingweb/node-wot/issues/1430
139139 "no-prototype-builtins" : "off" ,
140140 "no-case-declarations" : "off" ,
141141
0 commit comments