@jarsec/eslint-config 4.1.0 → 4.3.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 +16 -0
- package/index.js +1 -3
- package/package.json +15 -16
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @jarsec/eslint-config
|
|
2
2
|
|
|
3
|
+
## 4.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 30ad781: Remove style-related rule
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 672bab9: fix(deps): update dependencies
|
|
12
|
+
|
|
13
|
+
## 4.2.0
|
|
14
|
+
|
|
15
|
+
### Minor Changes
|
|
16
|
+
|
|
17
|
+
- 4c2b1f2: Correct bug where stylistic plugin was not bundled into the library tarball
|
|
18
|
+
|
|
3
19
|
## 4.1.0
|
|
4
20
|
|
|
5
21
|
### Minor Changes
|
package/index.js
CHANGED
|
@@ -9,14 +9,12 @@ module.exports = {
|
|
|
9
9
|
'plugin:@typescript-eslint/recommended',
|
|
10
10
|
'plugin:@typescript-eslint/stylistic',
|
|
11
11
|
'plugin:perfectionist/recommended-natural',
|
|
12
|
-
'plugin:@stylistic/disable-legacy',
|
|
13
|
-
'plugin:@stylistic/recommended-extends',
|
|
14
12
|
],
|
|
15
13
|
parser: '@typescript-eslint/parser',
|
|
16
14
|
parserOptions: {
|
|
17
15
|
project: './tsconfig.json',
|
|
18
16
|
},
|
|
19
|
-
plugins: ['import', 'perfectionist', '@typescript-eslint/eslint-plugin'
|
|
17
|
+
plugins: ['import', 'perfectionist', '@typescript-eslint/eslint-plugin'],
|
|
20
18
|
settings: {
|
|
21
19
|
'import/resolver': {
|
|
22
20
|
node: true,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jarsec/eslint-config",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.3.0",
|
|
4
4
|
"description": "jsec's eslint configurations",
|
|
5
5
|
"author": "Jarrod Seccombe <jarrod.seccombe@icloud.com>",
|
|
6
6
|
"main": "index.js",
|
|
@@ -9,27 +9,26 @@
|
|
|
9
9
|
"access": "public"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@rushstack/eslint-patch": "^1.6.
|
|
13
|
-
"@types/node": "^20.
|
|
14
|
-
"@typescript-eslint/eslint-plugin": "^6.
|
|
15
|
-
"@typescript-eslint/parser": "^6.
|
|
16
|
-
"eslint": "^8.
|
|
17
|
-
"eslint-config-prettier": "^9.
|
|
12
|
+
"@rushstack/eslint-patch": "^1.6.1",
|
|
13
|
+
"@types/node": "^20.10.5",
|
|
14
|
+
"@typescript-eslint/eslint-plugin": "^6.16.0",
|
|
15
|
+
"@typescript-eslint/parser": "^6.16.0",
|
|
16
|
+
"eslint": "^8.56.0",
|
|
17
|
+
"eslint-config-prettier": "^9.1.0",
|
|
18
18
|
"eslint-config-standard-with-typescript": "^40.0.0",
|
|
19
|
-
"eslint-plugin-import": "^2.29.
|
|
20
|
-
"eslint-plugin-n": "^16.
|
|
21
|
-
"eslint-plugin-perfectionist": "^2.
|
|
19
|
+
"eslint-plugin-import": "^2.29.1",
|
|
20
|
+
"eslint-plugin-n": "^16.5.0",
|
|
21
|
+
"eslint-plugin-perfectionist": "^2.5.0",
|
|
22
22
|
"eslint-plugin-promise": "^6.1.1",
|
|
23
|
-
"typescript": "^5.
|
|
23
|
+
"typescript": "^5.3.3"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"typescript": "^5.2.2"
|
|
26
|
+
"@types/node": "^20.10.5",
|
|
27
|
+
"eslint": "^8.56.0",
|
|
28
|
+
"typescript": "^5.3.3"
|
|
30
29
|
},
|
|
31
30
|
"peerDependencies": {
|
|
32
|
-
"eslint": "^8.
|
|
31
|
+
"eslint": "^8.56.0",
|
|
33
32
|
"typescript": "^5.2.2"
|
|
34
33
|
}
|
|
35
34
|
}
|