@etchteam/eslint-config 1.10.0 → 1.11.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/.github/dependabot.yml +3 -0
- package/.husky/pre-commit +4 -0
- package/CHANGELOG.md +3 -3
- package/lint-staged.config.js +1 -1
- package/package.json +11 -9
- package/src/index.js +1 -0
package/.github/dependabot.yml
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
## [1.
|
|
1
|
+
## [1.11.1](https://github.com/etchteam/eslint/compare/v1.11.0...v1.11.1) (2024-05-23)
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
###
|
|
4
|
+
### Bug Fixes
|
|
5
5
|
|
|
6
|
-
*
|
|
6
|
+
* bump eslint-config-next from 14.0.1 to 14.2.3 ([7e28c6d](https://github.com/etchteam/eslint/commit/7e28c6dbe065a5282460db4d3aaaa5ddb5c308b3))
|
package/lint-staged.config.js
CHANGED
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@etchteam/eslint-config",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.11.1",
|
|
4
4
|
"description": "Etch's standard eslint config",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"scripts": {
|
|
7
|
+
"postinstall": "husky install",
|
|
7
8
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
8
9
|
"release": "semantic-release"
|
|
9
10
|
},
|
|
@@ -24,14 +25,14 @@
|
|
|
24
25
|
},
|
|
25
26
|
"homepage": "https://github.com/etchteam/eslint#readme",
|
|
26
27
|
"devDependencies": {
|
|
27
|
-
"@commitlint/cli": "^
|
|
28
|
-
"@commitlint/config-conventional": "^
|
|
29
|
-
"husky": "^
|
|
30
|
-
"lint-staged": "^
|
|
28
|
+
"@commitlint/cli": "^19.3.0",
|
|
29
|
+
"@commitlint/config-conventional": "^19.2.2",
|
|
30
|
+
"husky": "^9.0.11",
|
|
31
|
+
"lint-staged": "^15.2.2"
|
|
31
32
|
},
|
|
32
33
|
"dependencies": {
|
|
33
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
34
|
-
"@typescript-eslint/parser": "^
|
|
34
|
+
"@typescript-eslint/eslint-plugin": "^7.10.0",
|
|
35
|
+
"@typescript-eslint/parser": "^7.10.0",
|
|
35
36
|
"eslint": ">=8.29.0",
|
|
36
37
|
"eslint-config-next": "^14.0.1",
|
|
37
38
|
"eslint-config-prettier": "^9.0.0",
|
|
@@ -40,10 +41,11 @@
|
|
|
40
41
|
"eslint-plugin-jsx-a11y": "^6.8.0",
|
|
41
42
|
"eslint-plugin-prettier": "^5.0.1",
|
|
42
43
|
"eslint-plugin-react": "^7.33.2",
|
|
43
|
-
"eslint-plugin-security": "^
|
|
44
|
-
"eslint-plugin-storybook": "^0.
|
|
44
|
+
"eslint-plugin-security": "^3.0.0",
|
|
45
|
+
"eslint-plugin-storybook": "^0.8.0",
|
|
45
46
|
"eslint-plugin-unused-imports": "^3.0.0",
|
|
46
47
|
"eslint-plugin-yml": "^1.10.0",
|
|
48
|
+
"eslint-plugin-you-dont-need-lodash-underscore": "^6.14.0",
|
|
47
49
|
"prettier": ">=3.0.0"
|
|
48
50
|
},
|
|
49
51
|
"peerDependencies": {
|