eslint-config-heck 4.0.2 → 4.0.3

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/node.mjs CHANGED
@@ -11,7 +11,6 @@ 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,
15
14
  {
16
15
  plugins: {
17
16
  "@stylistic": stylistic,
@@ -807,6 +806,10 @@ export default [
807
806
  "import/prefer-default-export": "off",
808
807
  },
809
808
  },
809
+ {
810
+ files: ["**/*.ts", "**/*.tsx"],
811
+ ...importPlugin.flatConfigs.typescript,
812
+ },
810
813
  {
811
814
  files: ["**/*.ts", "**/*.tsx"],
812
815
  plugins: {
package/nodeWithBiome.mjs CHANGED
@@ -11,7 +11,6 @@ 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,
15
14
  {
16
15
  plugins: {
17
16
  "@stylistic": stylistic,
@@ -722,6 +721,10 @@ export default [
722
721
  "import/prefer-default-export": "off",
723
722
  },
724
723
  },
724
+ {
725
+ files: ["**/*.ts", "**/*.tsx"],
726
+ ...importPlugin.flatConfigs.typescript,
727
+ },
725
728
  {
726
729
  files: ["**/*.ts", "**/*.tsx"],
727
730
  plugins: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-heck",
3
- "version": "4.0.2",
3
+ "version": "4.0.3",
4
4
  "description": "Contains an ESLint configuration for ES2015+, TypeScript, and React.",
5
5
  "type": "module",
6
6
  "main": "index.js",