eslint-config-conventions 21.2.2 → 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 CHANGED
@@ -245,14 +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": [
249
- "error",
250
- {
251
- "ignoreTernaryTests": true,
252
- "ignoreConditionalTests": false,
253
- "ignoreMixedLogicalExpressions": false
254
- }
255
- ],
248
+ "@typescript-eslint/prefer-nullish-coalescing": "off",
256
249
  "@typescript-eslint/prefer-readonly": "error",
257
250
  "@typescript-eslint/prefer-reduce-type-parameter": "error",
258
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-conventions",
3
- "version": "21.2.2",
3
+ "version": "21.2.4",
4
4
  "public": true,
5
5
  "description": "ESLint shareable config to enforce strict conventions and good code quality.",
6
6
  "author": "Théo LUDWIG <contact@theoludwig.fr>",