@abinnovision/eslint-config-typescript 2.1.0 → 2.1.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/CHANGELOG.md +9 -0
- package/README.md +5 -5
- package/package.json +11 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.1.1](https://github.com/abinnovision/js-commons/compare/eslint-config-typescript-v2.1.0...eslint-config-typescript-v2.1.1) (2024-10-16)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* migrate to Linter.Config type ([#340](https://github.com/abinnovision/js-commons/issues/340)) ([30a1c19](https://github.com/abinnovision/js-commons/commit/30a1c19c3a2f4c2b94e6086486951145b399e15d))
|
|
9
|
+
* only support eslint v9 ([#345](https://github.com/abinnovision/js-commons/issues/345)) ([7425fdc](https://github.com/abinnovision/js-commons/commit/7425fdc9c2d8912988697ab07b9a8f42d96786d4))
|
|
10
|
+
* use spaces for markdown files ([#349](https://github.com/abinnovision/js-commons/issues/349)) ([eeb8b33](https://github.com/abinnovision/js-commons/commit/eeb8b335916602b55ca02cfdea352bc296fa7ffb))
|
|
11
|
+
|
|
3
12
|
## [2.1.0](https://github.com/abinnovision/js-commons/compare/eslint-config-typescript-v2.0.0...eslint-config-typescript-v2.1.0) (2024-08-05)
|
|
4
13
|
|
|
5
14
|
|
package/README.md
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
# @abinnovision/eslint-config-typescript
|
|
2
2
|
|
|
3
3
|
ESLint config specifically for Typescript related projects. This config **must
|
|
4
|
-
be used in conjunction with
|
|
5
|
-
|
|
6
|
-
ESLint config**. This config is based on
|
|
7
|
-
|
|
8
|
-
|
|
4
|
+
be used in conjunction with the
|
|
5
|
+
[@abinnovision/eslint-config-base](https://github.com/abinnovision/js-commons/tree/master/packages/eslint-config-base)
|
|
6
|
+
ESLint config**. This config is based on the
|
|
7
|
+
[AlloyTeam ESLint Config](https://github.com/AlloyTeam/eslint-config-alloy) with
|
|
8
|
+
some additional goodies on top.
|
|
9
9
|
|
|
10
10
|
## Installation
|
|
11
11
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abinnovision/eslint-config-typescript",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"repository": {
|
|
6
6
|
"url": "https://github.com/abinnovision/js-commons"
|
|
@@ -42,21 +42,20 @@
|
|
|
42
42
|
},
|
|
43
43
|
"prettier": "@abinnovision/prettier-config",
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
46
|
-
"@typescript-eslint/parser": "^8.
|
|
45
|
+
"@typescript-eslint/eslint-plugin": "^8.8.1",
|
|
46
|
+
"@typescript-eslint/parser": "^8.8.1",
|
|
47
47
|
"eslint-config-alloy": "^5.1.2"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@abinnovision/prettier-config": "^2.1.
|
|
51
|
-
"@types/eslint": "^9.6.
|
|
52
|
-
"eslint": "^9.
|
|
53
|
-
"globals": "^15.
|
|
50
|
+
"@abinnovision/prettier-config": "^2.1.3",
|
|
51
|
+
"@types/eslint": "^9.6.1",
|
|
52
|
+
"eslint": "^9.12.0",
|
|
53
|
+
"globals": "^15.11.0",
|
|
54
54
|
"prettier": "^3.3.3",
|
|
55
|
-
"tsup": "^8.
|
|
56
|
-
"typescript": "^5.
|
|
55
|
+
"tsup": "^8.3.0",
|
|
56
|
+
"typescript": "^5.6.3"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
59
|
-
"eslint": "^
|
|
60
|
-
}
|
|
61
|
-
"packageManager": "yarn@3.4.1"
|
|
59
|
+
"eslint": "^9.0.0"
|
|
60
|
+
}
|
|
62
61
|
}
|