eslint-config-conventions 21.2.3 → 21.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.oxlintrc.json +1 -1
- package/eslint.config.js +1 -8
- package/package.json +1 -1
package/.oxlintrc.json
CHANGED
|
@@ -245,7 +245,7 @@
|
|
|
245
245
|
"@typescript-eslint/no-require-imports": "error",
|
|
246
246
|
"@typescript-eslint/prefer-function-type": "error",
|
|
247
247
|
"@typescript-eslint/prefer-find": "error",
|
|
248
|
-
"@typescript-eslint/prefer-nullish-coalescing": "
|
|
248
|
+
"@typescript-eslint/prefer-nullish-coalescing": "off",
|
|
249
249
|
"@typescript-eslint/prefer-readonly": "error",
|
|
250
250
|
"@typescript-eslint/prefer-reduce-type-parameter": "error",
|
|
251
251
|
"@typescript-eslint/prefer-return-this-type": "error",
|
package/eslint.config.js
CHANGED
|
@@ -431,14 +431,7 @@ export default defineConfig(
|
|
|
431
431
|
"@typescript-eslint/prefer-find": "error",
|
|
432
432
|
"@typescript-eslint/prefer-includes": "error",
|
|
433
433
|
|
|
434
|
-
"@typescript-eslint/prefer-nullish-coalescing":
|
|
435
|
-
"error",
|
|
436
|
-
{
|
|
437
|
-
ignoreTernaryTests: true,
|
|
438
|
-
ignoreConditionalTests: false,
|
|
439
|
-
ignoreMixedLogicalExpressions: false,
|
|
440
|
-
},
|
|
441
|
-
],
|
|
434
|
+
"@typescript-eslint/prefer-nullish-coalescing": "off",
|
|
442
435
|
|
|
443
436
|
"@typescript-eslint/prefer-readonly": "error",
|
|
444
437
|
"@typescript-eslint/prefer-reduce-type-parameter": "error",
|
package/package.json
CHANGED