@fenge/eslint-config 0.4.0-beta.2 → 0.4.0
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/CHANGELOG.md +13 -25
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,33 +1,11 @@
|
|
|
1
1
|
# @fenge/eslint-config
|
|
2
2
|
|
|
3
|
-
## 0.4.0
|
|
4
|
-
|
|
5
|
-
### Patch Changes
|
|
6
|
-
|
|
7
|
-
- 0d0f18c: chore: refresh pkg, no changes
|
|
8
|
-
- 84944a3: feat(eslint-config): add rule `es-x/no-top-level-await`
|
|
9
|
-
- af6e004: feat(eslint-config): add rule `no-console`
|
|
10
|
-
- Updated dependencies [0d0f18c]
|
|
11
|
-
- Updated dependencies [58c81c0]
|
|
12
|
-
- eslint-plugin-esm@0.2.2-beta.1
|
|
13
|
-
- @fenge/eslint-plugin@0.1.2-beta.1
|
|
14
|
-
- @fenge/eslint-plugin-ts@0.2.0-beta.0
|
|
15
|
-
|
|
16
|
-
## 0.4.0-beta.1
|
|
3
|
+
## 0.4.0
|
|
17
4
|
|
|
18
5
|
### Minor Changes
|
|
19
6
|
|
|
20
7
|
- c7a01e8: refactor(eslint-config): replace `override` and `extend` properties with `append` property for overriding or extending the built-in rules
|
|
21
8
|
- c5a6425: feat(eslint-config): allow configuring global linter options, and disable `reportUnusedDisableDirectives` by default
|
|
22
|
-
|
|
23
|
-
### Patch Changes
|
|
24
|
-
|
|
25
|
-
- 740fdb7: feat(eslint-config): remove rule `no-template-curly-in-string` for flexibility
|
|
26
|
-
|
|
27
|
-
## 0.4.0-beta.0
|
|
28
|
-
|
|
29
|
-
### Minor Changes
|
|
30
|
-
|
|
31
9
|
- 1f5fce3: refactor(eslint-config): optimize config structure
|
|
32
10
|
- 2f12ec2: refactor(eslint-config): optimize config structure and remove `project` param for ts config
|
|
33
11
|
|
|
@@ -35,15 +13,25 @@
|
|
|
35
13
|
|
|
36
14
|
- 5adeeed: fix: add missing peerDependencies and peerDependenciesMeta
|
|
37
15
|
- 36d1fb0: chore: upgrade deps
|
|
16
|
+
- 84944a3: feat(eslint-config): add rule `es-x/no-top-level-await`
|
|
38
17
|
- 0d71378: fix(eslint-config): allow import module from devDependencies for config files
|
|
18
|
+
- 740fdb7: feat(eslint-config): remove rule `no-template-curly-in-string` for flexibility
|
|
39
19
|
- 41c783a: feat(eslint-config): add many built-in and @typescript-eslint recommended rules
|
|
40
20
|
- 3f4e737: feat(eslint-config): add many rules of `eslint-plugin-unicorn`
|
|
21
|
+
- 905e445: chore: update deps
|
|
41
22
|
- 51502cc: feat: add rule `@fenge/no-jsx-in-non-jsx-file`
|
|
23
|
+
- af6e004: feat(eslint-config): add rule `no-console`
|
|
24
|
+
- Updated dependencies [58c81c0]
|
|
25
|
+
- Updated dependencies [905e445]
|
|
42
26
|
- Updated dependencies [51502cc]
|
|
27
|
+
- Updated dependencies [cd5aead]
|
|
43
28
|
- Updated dependencies [0c4462d]
|
|
44
29
|
- Updated dependencies [713d9a2]
|
|
45
|
-
- @fenge/eslint-plugin@0.
|
|
46
|
-
- eslint-plugin-esm@0.2.2
|
|
30
|
+
- @fenge/eslint-plugin-ts@0.2.0
|
|
31
|
+
- eslint-plugin-esm@0.2.2
|
|
32
|
+
- @fenge/eslint-plugin@0.1.2
|
|
33
|
+
- eslint-plugin-pkg-json@0.1.2
|
|
34
|
+
- eslint-plugin-publint@0.0.5
|
|
47
35
|
|
|
48
36
|
## 0.3.0
|
|
49
37
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fenge/eslint-config",
|
|
3
|
-
"version": "0.4.0
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "A super strict eslint config for linting js/ts/package.json.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"opinionated",
|
|
@@ -23,32 +23,32 @@
|
|
|
23
23
|
"type": "module",
|
|
24
24
|
"exports": "./dist/eslint.config.js",
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@typescript-eslint/eslint-plugin": "8.
|
|
27
|
-
"@typescript-eslint/parser": "8.
|
|
26
|
+
"@typescript-eslint/eslint-plugin": "8.18.0",
|
|
27
|
+
"@typescript-eslint/parser": "8.18.0",
|
|
28
28
|
"confusing-browser-globals": "1.0.11",
|
|
29
29
|
"eslint-plugin-es-x": "8.4.1",
|
|
30
30
|
"eslint-plugin-fp": "2.3.0",
|
|
31
31
|
"eslint-plugin-import": "2.31.0",
|
|
32
|
-
"eslint-plugin-n": "17.
|
|
32
|
+
"eslint-plugin-n": "17.15.0",
|
|
33
33
|
"eslint-plugin-promise": "7.2.1",
|
|
34
34
|
"eslint-plugin-react": "7.37.2",
|
|
35
|
-
"eslint-plugin-react-hooks": "5.
|
|
35
|
+
"eslint-plugin-react-hooks": "5.1.0",
|
|
36
36
|
"eslint-plugin-simple-import-sort": "12.1.1",
|
|
37
37
|
"eslint-plugin-sonarjs": "1.0.4",
|
|
38
38
|
"eslint-plugin-unicorn": "56.0.1",
|
|
39
|
-
"globals": "15.
|
|
40
|
-
"@fenge/eslint-plugin": "0.1.2
|
|
41
|
-
"@fenge/eslint-plugin-ts": "0.2.0
|
|
42
|
-
"eslint-plugin-esm": "0.2.2
|
|
43
|
-
"eslint-plugin-pkg-json": "0.1.
|
|
44
|
-
"eslint-plugin-publint": "0.0.
|
|
39
|
+
"globals": "15.13.0",
|
|
40
|
+
"@fenge/eslint-plugin": "0.1.2",
|
|
41
|
+
"@fenge/eslint-plugin-ts": "0.2.0",
|
|
42
|
+
"eslint-plugin-esm": "0.2.2",
|
|
43
|
+
"eslint-plugin-pkg-json": "0.1.2",
|
|
44
|
+
"eslint-plugin-publint": "0.0.5"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@types/eslint-config-prettier": "6.11.3",
|
|
48
48
|
"@types/node": "22.9.1",
|
|
49
49
|
"eslint": "8.57.1",
|
|
50
50
|
"eslint-config-prettier": "9.1.0",
|
|
51
|
-
"prettier": "3.4.
|
|
51
|
+
"prettier": "3.4.2",
|
|
52
52
|
"tsx": "4.19.2"
|
|
53
53
|
},
|
|
54
54
|
"peerDependencies": {
|