@nighttrax/eslint-config-ts 12.2.0 → 13.0.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/package.json +8 -5
- package/typescript.mjs +20 -3
- package/CHANGELOG.md +0 -206
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nighttrax/eslint-config-ts",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "13.0.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -13,22 +13,25 @@
|
|
|
13
13
|
"author": "Andrei Picus <NiGhTTraX@users.noreply.github.com>",
|
|
14
14
|
"license": "MIT",
|
|
15
15
|
"main": "typescript.mjs",
|
|
16
|
+
"files": [
|
|
17
|
+
"typescript.mjs"
|
|
18
|
+
],
|
|
16
19
|
"repository": {
|
|
17
20
|
"type": "git",
|
|
18
21
|
"url": "git+https://github.com/NiGhTTraX/eslint-config.git"
|
|
19
22
|
},
|
|
20
23
|
"dependencies": {
|
|
21
24
|
"@eslint/js": "~9.39.0",
|
|
22
|
-
"@stylistic/eslint-plugin": "~
|
|
23
|
-
"@typescript-eslint/parser": "~8.
|
|
25
|
+
"@stylistic/eslint-plugin": "~6.0.0-beta.5",
|
|
26
|
+
"@typescript-eslint/parser": "~8.59.0",
|
|
24
27
|
"eslint-config-prettier": "~10.1.5",
|
|
25
28
|
"eslint-import-resolver-typescript": "~4.4.4",
|
|
26
29
|
"eslint-plugin-import-x": "~4.16.1",
|
|
27
30
|
"eslint-plugin-prettier": "~5.5.1",
|
|
28
|
-
"typescript-eslint": "~8.
|
|
31
|
+
"typescript-eslint": "~8.60.1"
|
|
29
32
|
},
|
|
30
33
|
"peerDependencies": {
|
|
31
|
-
"eslint": "^
|
|
34
|
+
"eslint": "^10.0.0",
|
|
32
35
|
"prettier": "^3.0.0",
|
|
33
36
|
"typescript": "^5.0.0 || ^6.0.0"
|
|
34
37
|
}
|
package/typescript.mjs
CHANGED
|
@@ -4,6 +4,7 @@ import eslintPluginPrettierRecommended from "eslint-plugin-prettier/recommended"
|
|
|
4
4
|
import * as pluginImportX from "eslint-plugin-import-x";
|
|
5
5
|
import * as tsParser from "@typescript-eslint/parser";
|
|
6
6
|
import stylistic from "@stylistic/eslint-plugin";
|
|
7
|
+
import { defineConfig } from "eslint/config";
|
|
7
8
|
|
|
8
9
|
export const EXTENSIONS = "{js,mjs,cjs,ts,cts,mts,jsx,tsx}";
|
|
9
10
|
|
|
@@ -19,7 +20,7 @@ export const nighttraxTS = (
|
|
|
19
20
|
configs = [],
|
|
20
21
|
{ devDeps = [], ignores = [] } = {},
|
|
21
22
|
) =>
|
|
22
|
-
|
|
23
|
+
defineConfig([
|
|
23
24
|
{
|
|
24
25
|
linterOptions: {
|
|
25
26
|
reportUnusedDisableDirectives: "error",
|
|
@@ -28,7 +29,12 @@ export const nighttraxTS = (
|
|
|
28
29
|
{ ignores: ["**/dist/", "tests/results/", ...ignores] },
|
|
29
30
|
{
|
|
30
31
|
files: [`**/*.${EXTENSIONS}`],
|
|
31
|
-
languageOptions: {
|
|
32
|
+
languageOptions: {
|
|
33
|
+
parser: tsParser,
|
|
34
|
+
parserOptions: {
|
|
35
|
+
projectService: true,
|
|
36
|
+
},
|
|
37
|
+
},
|
|
32
38
|
},
|
|
33
39
|
|
|
34
40
|
{
|
|
@@ -38,8 +44,12 @@ export const nighttraxTS = (
|
|
|
38
44
|
},
|
|
39
45
|
|
|
40
46
|
pluginJs.configs.recommended,
|
|
41
|
-
|
|
47
|
+
|
|
48
|
+
tsEslint.configs.recommendedTypeChecked,
|
|
49
|
+
tsEslint.configs.stylisticTypeChecked,
|
|
50
|
+
|
|
42
51
|
eslintPluginPrettierRecommended,
|
|
52
|
+
|
|
43
53
|
pluginImportX.flatConfigs.recommended,
|
|
44
54
|
pluginImportX.flatConfigs.typescript,
|
|
45
55
|
|
|
@@ -76,6 +86,12 @@ export const nighttraxTS = (
|
|
|
76
86
|
],
|
|
77
87
|
},
|
|
78
88
|
],
|
|
89
|
+
"import-x/order": [
|
|
90
|
+
"error",
|
|
91
|
+
{
|
|
92
|
+
groups: ["builtin", "external", "parent", "sibling"],
|
|
93
|
+
},
|
|
94
|
+
],
|
|
79
95
|
},
|
|
80
96
|
},
|
|
81
97
|
|
|
@@ -86,6 +102,7 @@ export const nighttraxTS = (
|
|
|
86
102
|
// which is not worth the effort.
|
|
87
103
|
"no-undef": "off",
|
|
88
104
|
"@typescript-eslint/consistent-type-imports": "error",
|
|
105
|
+
"@typescript-eslint/consistent-type-definitions": "off",
|
|
89
106
|
"@typescript-eslint/no-unused-vars": [
|
|
90
107
|
"error",
|
|
91
108
|
{
|
package/CHANGELOG.md
DELETED
|
@@ -1,206 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
-
|
|
6
|
-
# [12.2.0](https://github.com/NiGhTTraX/eslint-config/compare/@nighttrax/eslint-config-ts@12.1.0...@nighttrax/eslint-config-ts@12.2.0) (2026-04-07)
|
|
7
|
-
|
|
8
|
-
### Bug Fixes
|
|
9
|
-
|
|
10
|
-
- **deps:** update dependency @stylistic/eslint-plugin to ~5.10.0 ([ea95bc6](https://github.com/NiGhTTraX/eslint-config/commit/ea95bc66bd7c6d681cb4ed2fa7fd133e4a0d6696))
|
|
11
|
-
- **deps:** update dependency @stylistic/eslint-plugin to ~5.7.0 ([bfc542a](https://github.com/NiGhTTraX/eslint-config/commit/bfc542a8e558bd09e15868e75b66383b4326fd0d))
|
|
12
|
-
- **deps:** update dependency @stylistic/eslint-plugin to ~5.8.0 ([bfc04da](https://github.com/NiGhTTraX/eslint-config/commit/bfc04dab9ee4d1852775f14ea1f0ca4cdbad209b))
|
|
13
|
-
- **deps:** update dependency @stylistic/eslint-plugin to ~5.9.0 ([59e35ab](https://github.com/NiGhTTraX/eslint-config/commit/59e35ab1bffbf0db934d1354c3329d2c8e6f204f))
|
|
14
|
-
- **deps:** update typescript-eslint monorepo to ~8.51.0 ([55d169d](https://github.com/NiGhTTraX/eslint-config/commit/55d169dbcab5a596770d6b2c21327ce1fb64e3f6))
|
|
15
|
-
- **deps:** update typescript-eslint monorepo to ~8.52.0 ([4d53235](https://github.com/NiGhTTraX/eslint-config/commit/4d53235d08648787a25d6f8421ff49ca502deab4))
|
|
16
|
-
- **deps:** update typescript-eslint monorepo to ~8.53.0 ([f9760d1](https://github.com/NiGhTTraX/eslint-config/commit/f9760d15e99e95506f576c07c3d921e03bdd433f))
|
|
17
|
-
- **deps:** update typescript-eslint monorepo to ~8.54.0 ([bd8a6e4](https://github.com/NiGhTTraX/eslint-config/commit/bd8a6e44080dcabbaaeb877551e12cb058996f77))
|
|
18
|
-
- **deps:** update typescript-eslint monorepo to ~8.55.0 ([47e2334](https://github.com/NiGhTTraX/eslint-config/commit/47e233408eb0dfc34613d31dd926157fbc2aed88))
|
|
19
|
-
- **deps:** update typescript-eslint monorepo to ~8.56.0 ([3ed0da3](https://github.com/NiGhTTraX/eslint-config/commit/3ed0da364cde68ef044a8a7673f1220396a87d78))
|
|
20
|
-
- **deps:** update typescript-eslint monorepo to ~8.57.0 ([a918a22](https://github.com/NiGhTTraX/eslint-config/commit/a918a229d365696a29543645fe853fd72a5420d8))
|
|
21
|
-
- **deps:** update typescript-eslint monorepo to ~8.58.0 ([dbe6c44](https://github.com/NiGhTTraX/eslint-config/commit/dbe6c44479f104af4e9a25da6b16278f54324557))
|
|
22
|
-
|
|
23
|
-
### Features
|
|
24
|
-
|
|
25
|
-
- Support typescript v6 ([42200ce](https://github.com/NiGhTTraX/eslint-config/commit/42200ce88c5925e98dad524c6fe8b4a0839ee7bc))
|
|
26
|
-
|
|
27
|
-
## [12.0.4](https://github.com/NiGhTTraX/eslint-config/compare/@nighttrax/eslint-config-ts@12.0.3...@nighttrax/eslint-config-ts@12.0.4) (2025-10-11)
|
|
28
|
-
|
|
29
|
-
### Bug Fixes
|
|
30
|
-
|
|
31
|
-
- **deps:** update eslint monorepo to ~9.37.0 ([57ce63a](https://github.com/NiGhTTraX/eslint-config/commit/57ce63a2187976e15f1442326400c3c6971807ef))
|
|
32
|
-
- **deps:** update typescript-eslint monorepo to ~8.46.0 ([4e36dbc](https://github.com/NiGhTTraX/eslint-config/commit/4e36dbcd72353bc13cd89954eecc84e974b3076c))
|
|
33
|
-
|
|
34
|
-
## [12.0.3](https://github.com/NiGhTTraX/eslint-config/compare/@nighttrax/eslint-config-ts@12.0.2...@nighttrax/eslint-config-ts@12.0.3) (2025-10-03)
|
|
35
|
-
|
|
36
|
-
### Bug Fixes
|
|
37
|
-
|
|
38
|
-
- **deps:** update dependency @stylistic/eslint-plugin to ~5.3.0 ([42c670b](https://github.com/NiGhTTraX/eslint-config/commit/42c670b859f19c2abf3a6984335890cac903416f))
|
|
39
|
-
- **deps:** update dependency @stylistic/eslint-plugin to ~5.4.0 ([5b0bf27](https://github.com/NiGhTTraX/eslint-config/commit/5b0bf27909ca997c9bf4fe8daa687f9b299fbe51))
|
|
40
|
-
- **deps:** update eslint monorepo to ~9.35.0 ([3c487b2](https://github.com/NiGhTTraX/eslint-config/commit/3c487b28234d4cfdaa088828450d42a42fbf8e94))
|
|
41
|
-
- **deps:** update eslint monorepo to ~9.36.0 ([e48a6bc](https://github.com/NiGhTTraX/eslint-config/commit/e48a6bcb5f6ddb91ff2a98bf9b75ed3ecebf047f))
|
|
42
|
-
- **deps:** update typescript-eslint monorepo to ~8.42.0 ([860eff3](https://github.com/NiGhTTraX/eslint-config/commit/860eff30ed84a375d26f427b2ce128d6c884511b))
|
|
43
|
-
- **deps:** update typescript-eslint monorepo to ~8.43.0 ([fac785c](https://github.com/NiGhTTraX/eslint-config/commit/fac785cef5bc5942d37bc9c7ffb67d6c98708974))
|
|
44
|
-
- **deps:** update typescript-eslint monorepo to ~8.44.0 ([f9d7419](https://github.com/NiGhTTraX/eslint-config/commit/f9d7419d2348efbf6c3749cb74ec9898812ef0ea))
|
|
45
|
-
- **deps:** update typescript-eslint monorepo to ~8.45.0 ([ef40034](https://github.com/NiGhTTraX/eslint-config/commit/ef400349d1536e7dc3a6ee8fff13bd05892afac9))
|
|
46
|
-
|
|
47
|
-
## [12.0.2](https://github.com/NiGhTTraX/eslint-config/compare/@nighttrax/eslint-config-ts@12.0.1...@nighttrax/eslint-config-ts@12.0.2) (2025-08-31)
|
|
48
|
-
|
|
49
|
-
### Bug Fixes
|
|
50
|
-
|
|
51
|
-
- **deps:** update eslint monorepo to ~9.32.0 ([10c21d0](https://github.com/NiGhTTraX/eslint-config/commit/10c21d0de3fc4bed41b37edbca497a2c90924d93))
|
|
52
|
-
- **deps:** update eslint monorepo to ~9.33.0 ([0eb8159](https://github.com/NiGhTTraX/eslint-config/commit/0eb8159ec5d756087b9d4fad9db7cf35cb3b64dc))
|
|
53
|
-
- **deps:** update eslint monorepo to ~9.34.0 ([e58714c](https://github.com/NiGhTTraX/eslint-config/commit/e58714cbd3e1066b3e51df3c67cdd7281ba2bb5b))
|
|
54
|
-
- **deps:** update typescript-eslint monorepo to ~8.38.0 ([64dc82c](https://github.com/NiGhTTraX/eslint-config/commit/64dc82ce785a0fdd12fa4fe8c5aa47c4c778d301))
|
|
55
|
-
- **deps:** update typescript-eslint monorepo to ~8.39.0 ([29b28b0](https://github.com/NiGhTTraX/eslint-config/commit/29b28b04a60dae5a6cb137e2a9909ba2ab2d69c5))
|
|
56
|
-
- **deps:** update typescript-eslint monorepo to ~8.40.0 ([93a3773](https://github.com/NiGhTTraX/eslint-config/commit/93a3773e05af51fca779eac6eb8e4a80df04f56c))
|
|
57
|
-
- **deps:** update typescript-eslint monorepo to ~8.41.0 ([f78ade0](https://github.com/NiGhTTraX/eslint-config/commit/f78ade04fcc6d0d2f2a0be301e44dbae43711bbd))
|
|
58
|
-
|
|
59
|
-
## [12.0.1](https://github.com/NiGhTTraX/eslint-config/compare/@nighttrax/eslint-config-ts@12.0.0...@nighttrax/eslint-config-ts@12.0.1) (2025-07-17)
|
|
60
|
-
|
|
61
|
-
### Bug Fixes
|
|
62
|
-
|
|
63
|
-
- **deps:** update dependency @stylistic/eslint-plugin to ~5.2.0 ([2c105ea](https://github.com/NiGhTTraX/eslint-config/commit/2c105eab72250704c4abb4d8b06ce407283a249a))
|
|
64
|
-
- **deps:** update eslint monorepo to ~9.31.0 ([9251058](https://github.com/NiGhTTraX/eslint-config/commit/925105802c9e6bca8b3802e515055659008e99df))
|
|
65
|
-
- **deps:** update typescript-eslint monorepo to ~8.37.0 ([68b3063](https://github.com/NiGhTTraX/eslint-config/commit/68b3063420b683d75197c02ba55c0642d2b7468c))
|
|
66
|
-
|
|
67
|
-
# [12.0.0-beta.6](https://github.com/NiGhTTraX/eslint-config/compare/@nighttrax/eslint-config-ts@12.0.0-beta.5...@nighttrax/eslint-config-ts@12.0.0-beta.6) (2025-07-17)
|
|
68
|
-
|
|
69
|
-
### Features
|
|
70
|
-
|
|
71
|
-
- **ts,react:** Parametrize configs ([f13060f](https://github.com/NiGhTTraX/eslint-config/commit/f13060ff3529fc041488f1b7d23cb2c42f8fe5ed))
|
|
72
|
-
- **ts:** Add more config file globs ([58c40dd](https://github.com/NiGhTTraX/eslint-config/commit/58c40dddcfa33fc8ddc427746e88dee96fec2800))
|
|
73
|
-
- **ts:** Add more ignore globs ([b75ee22](https://github.com/NiGhTTraX/eslint-config/commit/b75ee229ce4e5d72185ad2950fc54509c2324b01))
|
|
74
|
-
|
|
75
|
-
# [12.0.0-beta.5](https://github.com/NiGhTTraX/eslint-config/compare/@nighttrax/eslint-config-ts@12.0.0-beta.4...@nighttrax/eslint-config-ts@12.0.0-beta.5) (2025-07-15)
|
|
76
|
-
|
|
77
|
-
### Bug Fixes
|
|
78
|
-
|
|
79
|
-
- **ts:** Fix stories glob ([ba2d857](https://github.com/NiGhTTraX/eslint-config/commit/ba2d8572fce3ca7c9f6c82bfdd6030d5524819e2))
|
|
80
|
-
|
|
81
|
-
# [12.0.0-beta.4](https://github.com/NiGhTTraX/eslint-config/compare/@nighttrax/eslint-config-ts@12.0.0-beta.3...@nighttrax/eslint-config-ts@12.0.0-beta.4) (2025-07-15)
|
|
82
|
-
|
|
83
|
-
### Bug Fixes
|
|
84
|
-
|
|
85
|
-
- **ts:** Turn off no-undef after removing globals ([7243a76](https://github.com/NiGhTTraX/eslint-config/commit/7243a7643de08961b0a9c9c0598d128f45b8cc6d))
|
|
86
|
-
|
|
87
|
-
### Features
|
|
88
|
-
|
|
89
|
-
- **ts:** Handle dev deps for stories ([d8ed0e3](https://github.com/NiGhTTraX/eslint-config/commit/d8ed0e31009e12ee50223922671710c24ab5696f))
|
|
90
|
-
|
|
91
|
-
# [12.0.0-beta.3](https://github.com/NiGhTTraX/eslint-config/compare/@nighttrax/eslint-config-ts@12.0.0-beta.2...@nighttrax/eslint-config-ts@12.0.0-beta.3) (2025-07-15)
|
|
92
|
-
|
|
93
|
-
### Bug Fixes
|
|
94
|
-
|
|
95
|
-
- **ts:** Report errors from incorrect default imports ([238a87a](https://github.com/NiGhTTraX/eslint-config/commit/238a87a7b340f8bcae45aac01ecaf59d234b64e8))
|
|
96
|
-
|
|
97
|
-
### Features
|
|
98
|
-
|
|
99
|
-
- **ts,tsx:** Add a default ignore list ([ec4f3a8](https://github.com/NiGhTTraX/eslint-config/commit/ec4f3a89047d3a23c4f19248799e4c0625517c1b))
|
|
100
|
-
- **ts:** Report unused `eslint-disable` directives ([e58fe64](https://github.com/NiGhTTraX/eslint-config/commit/e58fe6489343520812e698c58121bf788b7a6fe1))
|
|
101
|
-
|
|
102
|
-
# [12.0.0-beta.2](https://github.com/NiGhTTraX/eslint-config/compare/@nighttrax/eslint-config-ts@12.0.0-beta.1...@nighttrax/eslint-config-ts@12.0.0-beta.2) (2025-07-10)
|
|
103
|
-
|
|
104
|
-
### Features
|
|
105
|
-
|
|
106
|
-
- **ts,tsx:** Export config helpers ([ae77cda](https://github.com/NiGhTTraX/eslint-config/commit/ae77cdacf76e80427b0e8fcc5618622d83c0b21b))
|
|
107
|
-
- **ts:** Include more ts extensions ([6191739](https://github.com/NiGhTTraX/eslint-config/commit/6191739d5bfaf727d0e56858c5636b4f5fbe61a9))
|
|
108
|
-
|
|
109
|
-
# [12.0.0-beta.1](https://github.com/NiGhTTraX/eslint-config/compare/@nighttrax/eslint-config-ts@12.0.0-beta.0...@nighttrax/eslint-config-ts@12.0.0-beta.1) (2025-07-06)
|
|
110
|
-
|
|
111
|
-
### Features
|
|
112
|
-
|
|
113
|
-
- **ts:** Add more globs for dev deps ([2e6e9e7](https://github.com/NiGhTTraX/eslint-config/commit/2e6e9e7044c81a16da1f2e248d0e8933963fa8f4))
|
|
114
|
-
|
|
115
|
-
# [12.0.0-beta.0](https://github.com/NiGhTTraX/eslint-config/compare/@nighttrax/eslint-config-ts@12.0.0-alpha.3...@nighttrax/eslint-config-ts@12.0.0-beta.0) (2025-07-04)
|
|
116
|
-
|
|
117
|
-
**Note:** Version bump only for package @nighttrax/eslint-config-ts
|
|
118
|
-
|
|
119
|
-
# [12.0.0-alpha.3](https://github.com/NiGhTTraX/eslint-config/compare/@nighttrax/eslint-config-ts@12.0.0-alpha.2...@nighttrax/eslint-config-ts@12.0.0-alpha.3) (2023-04-17)
|
|
120
|
-
|
|
121
|
-
### Bug Fixes
|
|
122
|
-
|
|
123
|
-
- **deps:** update typescript-eslint monorepo to ~5.57.0 ([339bfcb](https://github.com/NiGhTTraX/eslint-config/commit/339bfcb1e325f4d3ce1dc4c614d6518d48113c18))
|
|
124
|
-
|
|
125
|
-
# [12.0.0-alpha.2](https://github.com/NiGhTTraX/eslint-config/compare/@nighttrax/eslint-config-ts@12.0.0-alpha.1...@nighttrax/eslint-config-ts@12.0.0-alpha.2) (2023-03-20)
|
|
126
|
-
|
|
127
|
-
**Note:** Version bump only for package @nighttrax/eslint-config-ts
|
|
128
|
-
|
|
129
|
-
# [12.0.0-alpha.1](https://github.com/NiGhTTraX/eslint-config/compare/@nighttrax/eslint-config-ts@12.0.0-alpha.0...@nighttrax/eslint-config-ts@12.0.0-alpha.1) (2023-03-20)
|
|
130
|
-
|
|
131
|
-
**Note:** Version bump only for package @nighttrax/eslint-config-ts
|
|
132
|
-
|
|
133
|
-
# [10.0.0](https://github.com/NiGhTTraX/eslint-config/compare/@nighttrax/eslint-config-ts@10.0.0-beta.2...@nighttrax/eslint-config-ts@10.0.0) (2022-08-25)
|
|
134
|
-
|
|
135
|
-
### Bug Fixes
|
|
136
|
-
|
|
137
|
-
- **deps:** update dependency eslint-import-resolver-typescript to ~2.7.0 ([aa68548](https://github.com/NiGhTTraX/eslint-config/commit/aa68548080ce73b548e72500924d0043cdc74ac4))
|
|
138
|
-
- **deps:** update dependency eslint-import-resolver-typescript to ~3.2.0 ([1b7f887](https://github.com/NiGhTTraX/eslint-config/commit/1b7f8874a5f7db3c4d391535397ba157f112d307))
|
|
139
|
-
- **deps:** update dependency eslint-import-resolver-typescript to ~3.3.0 ([948363f](https://github.com/NiGhTTraX/eslint-config/commit/948363f2365dfaa209da18aa0b86ce3076da9579))
|
|
140
|
-
- **deps:** update dependency eslint-import-resolver-typescript to ~3.4.0 ([a45981a](https://github.com/NiGhTTraX/eslint-config/commit/a45981a6148644ffd82f7c1f741b611fc02d2200))
|
|
141
|
-
- **deps:** update dependency eslint-import-resolver-typescript to ~3.5.0 ([fd9b586](https://github.com/NiGhTTraX/eslint-config/commit/fd9b58690eeb9bf5124e3cb0af3d3aebb391fb5d))
|
|
142
|
-
- **deps:** update dependency eslint-import-resolver-typescript to v3 ([8cc5d9d](https://github.com/NiGhTTraX/eslint-config/commit/8cc5d9da548f22a2f25815a2ccf3cbec5d068129))
|
|
143
|
-
- **deps:** update dependency eslint-plugin-import to ~2.26.0 ([34d1654](https://github.com/NiGhTTraX/eslint-config/commit/34d16541be02de0367f190ed2ccedcc8c2d5799c))
|
|
144
|
-
- **deps:** update dependency eslint-plugin-jsx-a11y to ~6.6.0 ([62597e2](https://github.com/NiGhTTraX/eslint-config/commit/62597e2ba8a23f7b02795c47b5c23955770a0ecf))
|
|
145
|
-
- **deps:** update dependency eslint-plugin-prettier to ~4.1.0 ([1641c19](https://github.com/NiGhTTraX/eslint-config/commit/1641c19471618e5c775c53c9f5d3393320d754bc))
|
|
146
|
-
- **deps:** update dependency eslint-plugin-prettier to ~4.2.0 ([371b98f](https://github.com/NiGhTTraX/eslint-config/commit/371b98fbb445f693984614807084c06f6f15dcc0))
|
|
147
|
-
- **deps:** update dependency eslint-plugin-react to ~7.29.0 ([748a74c](https://github.com/NiGhTTraX/eslint-config/commit/748a74cf6b04dc02fd823cee50e1a1fa0d76e9f3))
|
|
148
|
-
- **deps:** update dependency eslint-plugin-react to ~7.30.0 ([de82c5f](https://github.com/NiGhTTraX/eslint-config/commit/de82c5fde798bd2e33adaf02aca39fe7e4ac4507))
|
|
149
|
-
- **deps:** update dependency eslint-plugin-react to ~7.31.0 ([c29b065](https://github.com/NiGhTTraX/eslint-config/commit/c29b0658d3f3a118e8fcc27a2af44c8fe429c24a))
|
|
150
|
-
- **deps:** update dependency eslint-plugin-react-hooks to ~4.4.0 ([7850328](https://github.com/NiGhTTraX/eslint-config/commit/7850328d5b69f1abf63304b5319e2765523a7fbb))
|
|
151
|
-
- **deps:** update dependency eslint-plugin-react-hooks to ~4.5.0 ([884bf63](https://github.com/NiGhTTraX/eslint-config/commit/884bf63de0f32704468b63995f129c15f842925e))
|
|
152
|
-
- **deps:** update dependency eslint-plugin-react-hooks to ~4.6.0 ([7e8637b](https://github.com/NiGhTTraX/eslint-config/commit/7e8637be31e8ed40f527f7b83991fc5cdfa75210))
|
|
153
|
-
- **deps:** update dependency prettier to ~2.6.0 ([66702f3](https://github.com/NiGhTTraX/eslint-config/commit/66702f3d5a0285b4d511ccd8e0983a1584e9b161))
|
|
154
|
-
- **deps:** update dependency prettier to ~2.7.0 ([dd152e0](https://github.com/NiGhTTraX/eslint-config/commit/dd152e093f072b99bff914b2b3066a7eba5119f1))
|
|
155
|
-
- **deps:** update typescript-eslint monorepo to ~5.10.0 ([6bea838](https://github.com/NiGhTTraX/eslint-config/commit/6bea838ed1e094aed6b5a060b4e8b50ef6f154bb))
|
|
156
|
-
- **deps:** update typescript-eslint monorepo to ~5.11.0 ([e39b801](https://github.com/NiGhTTraX/eslint-config/commit/e39b80183fb6b3f34ffbff628e4ef4b93bfb4351))
|
|
157
|
-
- **deps:** update typescript-eslint monorepo to ~5.12.0 ([420d4fc](https://github.com/NiGhTTraX/eslint-config/commit/420d4fcfcb156ff243ec673717f5fdc6b80d19ea))
|
|
158
|
-
- **deps:** update typescript-eslint monorepo to ~5.13.0 ([fd2881b](https://github.com/NiGhTTraX/eslint-config/commit/fd2881b8e089d823146d65583596869a02fa0d0f))
|
|
159
|
-
- **deps:** update typescript-eslint monorepo to ~5.14.0 ([93e1041](https://github.com/NiGhTTraX/eslint-config/commit/93e1041c93ad47430811970c0a841c6dfe042e44))
|
|
160
|
-
- **deps:** update typescript-eslint monorepo to ~5.15.0 ([fe2fa10](https://github.com/NiGhTTraX/eslint-config/commit/fe2fa1014597010222b26ee71fe7ec853bdf9503))
|
|
161
|
-
- **deps:** update typescript-eslint monorepo to ~5.16.0 ([f4c9cf4](https://github.com/NiGhTTraX/eslint-config/commit/f4c9cf4ad284dbd71b67ec663e945b5c9d2691c7))
|
|
162
|
-
- **deps:** update typescript-eslint monorepo to ~5.17.0 ([1c8fa70](https://github.com/NiGhTTraX/eslint-config/commit/1c8fa705640ac5166abe7db1e3c01ae079966f19))
|
|
163
|
-
- **deps:** update typescript-eslint monorepo to ~5.18.0 ([4a1f2a1](https://github.com/NiGhTTraX/eslint-config/commit/4a1f2a1ef0a57c181018b9ed8954d1a1e4fe109c))
|
|
164
|
-
- **deps:** update typescript-eslint monorepo to ~5.19.0 ([ca55f11](https://github.com/NiGhTTraX/eslint-config/commit/ca55f118cb1ac809b136e06ad986a88469cbecd0))
|
|
165
|
-
- **deps:** update typescript-eslint monorepo to ~5.20.0 ([d400a4c](https://github.com/NiGhTTraX/eslint-config/commit/d400a4caf65ddd4790e546f99fa0b58946960bdb))
|
|
166
|
-
- **deps:** update typescript-eslint monorepo to ~5.21.0 ([b9a21c7](https://github.com/NiGhTTraX/eslint-config/commit/b9a21c7dc3478bf2501a3c623eea65ec1235be8d))
|
|
167
|
-
- **deps:** update typescript-eslint monorepo to ~5.22.0 ([a4a245a](https://github.com/NiGhTTraX/eslint-config/commit/a4a245a30fc4ce94e7338175e686dee12b21fc04))
|
|
168
|
-
- **deps:** update typescript-eslint monorepo to ~5.25.0 ([d6853bd](https://github.com/NiGhTTraX/eslint-config/commit/d6853bdc38267461b8815023601a8c31bd2f4e8e))
|
|
169
|
-
- **deps:** update typescript-eslint monorepo to ~5.26.0 ([2b350f3](https://github.com/NiGhTTraX/eslint-config/commit/2b350f36b178ad5473d6239f58b907f159cf84d5))
|
|
170
|
-
- **deps:** update typescript-eslint monorepo to ~5.27.0 ([09201f9](https://github.com/NiGhTTraX/eslint-config/commit/09201f993430c314fd8435ffd8b16205e52f7eeb))
|
|
171
|
-
- **deps:** update typescript-eslint monorepo to ~5.28.0 ([546d2c4](https://github.com/NiGhTTraX/eslint-config/commit/546d2c420feece937ad57e50402d652883317cdd))
|
|
172
|
-
- **deps:** update typescript-eslint monorepo to ~5.29.0 ([4e504a7](https://github.com/NiGhTTraX/eslint-config/commit/4e504a71e60f03ba9109509286ced399f9efafe9))
|
|
173
|
-
- **deps:** update typescript-eslint monorepo to ~5.30.0 ([18e9958](https://github.com/NiGhTTraX/eslint-config/commit/18e9958b89d70c392c8655781bd10ab9381c904d))
|
|
174
|
-
- **deps:** update typescript-eslint monorepo to ~5.31.0 ([867b97a](https://github.com/NiGhTTraX/eslint-config/commit/867b97a8b7db0a7c9afe6c380b4a29ba7d769ecc))
|
|
175
|
-
- **deps:** update typescript-eslint monorepo to ~5.32.0 ([b86e191](https://github.com/NiGhTTraX/eslint-config/commit/b86e191c4c6937182cafdff95a6bc7de5c9583bc))
|
|
176
|
-
- **deps:** update typescript-eslint monorepo to ~5.33.0 ([fc5ce21](https://github.com/NiGhTTraX/eslint-config/commit/fc5ce21da0fda498ee4707e80ec28f7dd750959f))
|
|
177
|
-
- **deps:** update typescript-eslint monorepo to ~5.34.0 ([6d2ffdd](https://github.com/NiGhTTraX/eslint-config/commit/6d2ffdd9240c0a3bc881aa3c8772106a8238f0f6))
|
|
178
|
-
- **deps:** update typescript-eslint monorepo to ~5.35.0 ([7d6d91f](https://github.com/NiGhTTraX/eslint-config/commit/7d6d91f66713cd79aee142c1df53c2a479e7890e))
|
|
179
|
-
- **deps:** update typescript-eslint monorepo to ~5.9.0 ([3ff65f2](https://github.com/NiGhTTraX/eslint-config/commit/3ff65f285351f0b6ae33fd9e481fb7d1a339ed14))
|
|
180
|
-
|
|
181
|
-
## [8.0.4](https://github.com/NiGhTTraX/eslint-config/compare/@nighttrax/eslint-config-ts@8.0.3...@nighttrax/eslint-config-ts@8.0.4) (2021-02-21)
|
|
182
|
-
|
|
183
|
-
### Bug Fixes
|
|
184
|
-
|
|
185
|
-
- **deps:** update dependency eslint-import-resolver-typescript to ~2.4.0 ([65807d7](https://github.com/NiGhTTraX/eslint-config/commit/65807d750abe14b88db67f7443e16559f0a2f6a3))
|
|
186
|
-
- **deps:** update typescript-eslint monorepo to ~4.15.0 ([009d41f](https://github.com/NiGhTTraX/eslint-config/commit/009d41f82719f85da9784b32b54b48dbe37dcc27))
|
|
187
|
-
|
|
188
|
-
## [8.0.3](https://github.com/NiGhTTraX/eslint-config/compare/@nighttrax/eslint-config-ts@8.0.2...@nighttrax/eslint-config-ts@8.0.3) (2021-01-27)
|
|
189
|
-
|
|
190
|
-
**Note:** Version bump only for package @nighttrax/eslint-config-ts
|
|
191
|
-
|
|
192
|
-
## [8.0.2](https://github.com/NiGhTTraX/eslint-config/compare/@nighttrax/eslint-config-ts@8.0.1...@nighttrax/eslint-config-ts@8.0.2) (2021-01-11)
|
|
193
|
-
|
|
194
|
-
### Bug Fixes
|
|
195
|
-
|
|
196
|
-
- **ts:** Disable flaky no-redeclare core rule ([1fad70d](https://github.com/NiGhTTraX/eslint-config/commit/1fad70dc60c5486cf03ea7a8b2a6efae813fafe6))
|
|
197
|
-
|
|
198
|
-
## [8.0.1](https://github.com/NiGhTTraX/eslint-config/compare/@nighttrax/eslint-config-ts@8.0.0...@nighttrax/eslint-config-ts@8.0.1) (2021-01-08)
|
|
199
|
-
|
|
200
|
-
### Bug Fixes
|
|
201
|
-
|
|
202
|
-
- **ts:** Ignore unused rest siblings ([064e4bf](https://github.com/NiGhTTraX/eslint-config/commit/064e4bf802d0182afc71885d3f5de598b75d96ba))
|
|
203
|
-
|
|
204
|
-
# [8.0.0](https://github.com/NiGhTTraX/eslint-config/compare/@nighttrax/eslint-config-ts@8.0.0-alpha.0...@nighttrax/eslint-config-ts@8.0.0) (2021-01-07)
|
|
205
|
-
|
|
206
|
-
**Note:** Version bump only for package @nighttrax/eslint-config-ts
|