eslint-config-decent 1.3.0 → 1.4.0

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/dist/index.cjs CHANGED
@@ -426,6 +426,7 @@ const base$5 = {
426
426
  rules: {
427
427
  ...mocha__default.configs.recommended.rules,
428
428
  "max-classes-per-file": "off",
429
+ "@typescript-eslint/no-confusing-void-expression": "off",
429
430
  "@typescript-eslint/no-empty-function": "off",
430
431
  "@typescript-eslint/no-unsafe-member-access": "off",
431
432
  "@typescript-eslint/no-unsafe-argument": "off",
package/dist/index.mjs CHANGED
@@ -408,6 +408,7 @@ const base$5 = {
408
408
  rules: {
409
409
  ...mocha.configs.recommended.rules,
410
410
  "max-classes-per-file": "off",
411
+ "@typescript-eslint/no-confusing-void-expression": "off",
411
412
  "@typescript-eslint/no-empty-function": "off",
412
413
  "@typescript-eslint/no-unsafe-member-access": "off",
413
414
  "@typescript-eslint/no-unsafe-argument": "off",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-decent",
3
- "version": "1.3.0",
3
+ "version": "1.4.0",
4
4
  "description": "A decent ESLint configuration",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",
@@ -74,7 +74,7 @@
74
74
  "dependencies": {
75
75
  "@eslint/js": "^9.6.0",
76
76
  "eslint-config-prettier": "^9.1.0",
77
- "eslint-plugin-jsdoc": "^48.5.2",
77
+ "eslint-plugin-jsdoc": "^48.7.0",
78
78
  "eslint-plugin-mocha": "^10.4.3",
79
79
  "eslint-plugin-prettier": "^5.1.3",
80
80
  "eslint-plugin-promise": "^6.4.0",
package/src/mocha.ts CHANGED
@@ -10,6 +10,7 @@ const base: ConfigWithExtends = {
10
10
 
11
11
  'max-classes-per-file': 'off',
12
12
 
13
+ '@typescript-eslint/no-confusing-void-expression': 'off',
13
14
  '@typescript-eslint/no-empty-function': 'off',
14
15
  '@typescript-eslint/no-unsafe-member-access': 'off',
15
16
  '@typescript-eslint/no-unsafe-argument': 'off',