eslint-config-decent 1.2.5 → 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
@@ -716,6 +716,7 @@ function defaultConfig(options) {
716
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
@@ -698,6 +698,7 @@ function defaultConfig(options) {
698
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.5",
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
@@ -106,6 +106,7 @@ export function defaultConfig(options?: DefaultConfigOptions): ConfigWithExtends
106
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
  },