eslint-config-heck 4.3.0 → 4.3.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/package.json +6 -6
- package/readme.md +4 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-config-heck",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.1",
|
|
4
4
|
"description": "Contains an ESLint configuration for ES2015+, TypeScript, and React.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -26,10 +26,10 @@
|
|
|
26
26
|
"author": "atheck",
|
|
27
27
|
"license": "MIT",
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@stylistic/eslint-plugin": "
|
|
30
|
-
"@typescript-eslint/eslint-plugin": "8.
|
|
31
|
-
"@typescript-eslint/parser": "8.
|
|
32
|
-
"eslint": "9.
|
|
29
|
+
"@stylistic/eslint-plugin": "3.0.1",
|
|
30
|
+
"@typescript-eslint/eslint-plugin": "8.22.0",
|
|
31
|
+
"@typescript-eslint/parser": "8.22.0",
|
|
32
|
+
"eslint": "9.19.0",
|
|
33
33
|
"eslint-plugin-import": "2.31.0",
|
|
34
34
|
"eslint-plugin-jest": "28.11.0",
|
|
35
35
|
"eslint-plugin-react": "7.37.4",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@biomejs/biome": "1.9.4",
|
|
44
44
|
"@testing-library/dom": "10.4.0",
|
|
45
|
-
"@testing-library/react": "16.
|
|
45
|
+
"@testing-library/react": "16.2.0",
|
|
46
46
|
"@types/jest": "29.5.14",
|
|
47
47
|
"@types/react": "18.3.18",
|
|
48
48
|
"globals": "15.14.0",
|
package/readme.md
CHANGED
|
@@ -5,7 +5,7 @@ eslint-config-heck contains an ESLint configuration for ES2015+, TypeScript, and
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
~~~sh
|
|
8
|
-
npm install --save-dev eslint eslint-config-heck
|
|
8
|
+
npm install --save-dev eslint@9 eslint-config-heck
|
|
9
9
|
~~~
|
|
10
10
|
|
|
11
11
|
## Usage
|
|
@@ -70,6 +70,9 @@ If you are using react-native, you can enable react-native specific rules:
|
|
|
70
70
|
...node,
|
|
71
71
|
...reactNative,
|
|
72
72
|
};
|
|
73
|
+
}
|
|
74
|
+
~~~
|
|
75
|
+
|
|
73
76
|
### Rules with usage of Biome
|
|
74
77
|
|
|
75
78
|
If you are using Biome you can use the "nodeWithBiome" configuration:
|