eslint-config-heck 4.0.0 → 4.0.1

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,
@@ -810,26 +809,12 @@ export default [
810
809
  {
811
810
  files: ["**/*.ts", "**/*.tsx"],
812
811
  plugins: {
813
- "@stylistic": stylistic,
814
- react,
815
- "react-hooks": reactHooks,
816
- unicorn,
817
- import: importPlugin,
818
812
  "@typescript-eslint": typescriptEslint,
819
813
  },
820
814
  languageOptions: {
821
- globals: {
822
- NodeJS: true,
823
- },
824
815
  parser: tsParser,
825
- ecmaVersion: "latest",
826
816
  sourceType: "module",
827
817
  parserOptions: {
828
- ecmaFeatures: {
829
- globalReturn: false,
830
- impliedStrict: false,
831
- jsx: true,
832
- },
833
818
  project: "tsconfig.json",
834
819
  },
835
820
  },
package/nodeWithBiome.mjs CHANGED
@@ -724,27 +724,12 @@ export default [
724
724
  {
725
725
  files: ["**/*.ts", "**/*.tsx"],
726
726
  plugins: {
727
- "@stylistic": stylistic,
728
- react,
729
- "react-hooks": reactHooks,
730
- unicorn,
731
- import: importPlugin,
732
727
  "@typescript-eslint": typescriptEslint,
733
728
  },
734
729
  languageOptions: {
735
- globals: {
736
- NodeJS: true,
737
- },
738
730
  parser: tsParser,
739
- ecmaVersion: "latest",
740
731
  sourceType: "module",
741
732
  parserOptions: {
742
- ecmaFeatures: {
743
- globalReturn: false,
744
- impliedStrict: false,
745
- jsx: true,
746
- },
747
-
748
733
  project: "tsconfig.json",
749
734
  },
750
735
  },
@@ -1116,6 +1101,7 @@ export default [
1116
1101
  jest,
1117
1102
  },
1118
1103
  rules: {
1104
+ // eslint-plugin-jest
1119
1105
  "jest/no-untyped-mock-factory": "error",
1120
1106
  },
1121
1107
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-heck",
3
- "version": "4.0.0",
3
+ "version": "4.0.1",
4
4
  "description": "Contains an ESLint configuration for ES2015+, TypeScript, and React.",
5
5
  "type": "module",
6
6
  "main": "index.js",