eslint-config-heck 4.0.1 → 4.0.2

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/complexity.mjs CHANGED
@@ -18,7 +18,6 @@ export default [
18
18
  "**/*.test.js",
19
19
  "**/*.test.jsx",
20
20
  ],
21
-
22
21
  rules: {
23
22
  "max-statements": "off",
24
23
  "max-params": "off",
package/groupImports.mjs CHANGED
@@ -9,7 +9,6 @@ export default [
9
9
  ignoreDeclarationSort: true,
10
10
  },
11
11
  ],
12
-
13
12
  "import/order": [
14
13
  "error",
15
14
  {
@@ -23,7 +22,6 @@ export default [
23
22
  "index",
24
23
  "object",
25
24
  ],
26
-
27
25
  alphabetize: {
28
26
  order: "asc",
29
27
  caseInsensitive: true,
package/node.mjs CHANGED
@@ -11,6 +11,7 @@ import testingLibrary from "eslint-plugin-testing-library";
11
11
 
12
12
  // biome-ignore lint/style/noDefaultExport: Required for ESLint
13
13
  export default [
14
+ importPlugin.flatConfigs.typescript,
14
15
  {
15
16
  plugins: {
16
17
  "@stylistic": stylistic,
@@ -815,7 +816,8 @@ export default [
815
816
  parser: tsParser,
816
817
  sourceType: "module",
817
818
  parserOptions: {
818
- project: "tsconfig.json",
819
+ projectService: true,
820
+ tsconfigRootDir: import.meta.dirname,
819
821
  },
820
822
  },
821
823
  rules: {
package/nodeWithBiome.mjs CHANGED
@@ -11,6 +11,7 @@ import testingLibrary from "eslint-plugin-testing-library";
11
11
 
12
12
  // biome-ignore lint/style/noDefaultExport: Required for ESLint
13
13
  export default [
14
+ importPlugin.flatConfigs.typescript,
14
15
  {
15
16
  plugins: {
16
17
  "@stylistic": stylistic,
@@ -730,7 +731,8 @@ export default [
730
731
  parser: tsParser,
731
732
  sourceType: "module",
732
733
  parserOptions: {
733
- project: "tsconfig.json",
734
+ projectService: true,
735
+ tsconfigRootDir: import.meta.dirname,
734
736
  },
735
737
  },
736
738
  rules: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-heck",
3
- "version": "4.0.1",
3
+ "version": "4.0.2",
4
4
  "description": "Contains an ESLint configuration for ES2015+, TypeScript, and React.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -31,7 +31,6 @@
31
31
  "@typescript-eslint/eslint-plugin": "8.12.2",
32
32
  "@typescript-eslint/parser": "8.12.2",
33
33
  "eslint": "9.13.0",
34
- "eslint-import-resolver-typescript": "3.6.3",
35
34
  "eslint-plugin-import": "2.31.0",
36
35
  "eslint-plugin-jest": "28.8.3",
37
36
  "eslint-plugin-react": "7.37.2",
package/reactNative.mjs CHANGED
@@ -7,7 +7,6 @@ export default [
7
7
  plugins: {
8
8
  "react-native": fixupPluginRules(reactNative),
9
9
  },
10
-
11
10
  rules: {
12
11
  "react-native/no-color-literals": "error",
13
12
  "react-native/no-inline-styles": "error",