eslint-config-decent 1.2.4 → 1.2.6

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
@@ -712,10 +712,11 @@ function defaultConfig(options) {
712
712
  ...configs$8.cjs
713
713
  },
714
714
  {
715
- name: "eslint-config-decent/mjs-cleanup",
716
- files: ["**/*.mjs"],
715
+ name: "eslint-config-decent/js-cleanup",
716
+ files: ["**/*.js", "**/*.cjs", "**/*.mjs"],
717
717
  rules: {
718
718
  "@typescript-eslint/no-unsafe-assignment": "off",
719
+ "@typescript-eslint/no-unsafe-call": "off",
719
720
  "@typescript-eslint/no-unsafe-member-access": "off"
720
721
  }
721
722
  },
package/dist/index.mjs CHANGED
@@ -694,10 +694,11 @@ function defaultConfig(options) {
694
694
  ...configs$8.cjs
695
695
  },
696
696
  {
697
- name: "eslint-config-decent/mjs-cleanup",
698
- files: ["**/*.mjs"],
697
+ name: "eslint-config-decent/js-cleanup",
698
+ files: ["**/*.js", "**/*.cjs", "**/*.mjs"],
699
699
  rules: {
700
700
  "@typescript-eslint/no-unsafe-assignment": "off",
701
+ "@typescript-eslint/no-unsafe-call": "off",
701
702
  "@typescript-eslint/no-unsafe-member-access": "off"
702
703
  }
703
704
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-decent",
3
- "version": "1.2.4",
3
+ "version": "1.2.6",
4
4
  "description": "A decent ESLint configuration",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",
package/src/index.ts CHANGED
@@ -102,10 +102,11 @@ export function defaultConfig(options?: DefaultConfigOptions): ConfigWithExtends
102
102
  ...eslintConfigs.cjs,
103
103
  },
104
104
  {
105
- name: 'eslint-config-decent/mjs-cleanup',
106
- files: ['**/*.mjs'],
105
+ name: 'eslint-config-decent/js-cleanup',
106
+ files: ['**/*.js', '**/*.cjs', '**/*.mjs'],
107
107
  rules: {
108
108
  '@typescript-eslint/no-unsafe-assignment': 'off',
109
+ '@typescript-eslint/no-unsafe-call': 'off',
109
110
  '@typescript-eslint/no-unsafe-member-access': 'off',
110
111
  },
111
112
  },