@labeg/code-style 6.4.1 → 6.5.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/eslint.config.js +1 -0
- package/package.json +16 -16
package/eslint.config.js
CHANGED
|
@@ -141,6 +141,7 @@ export default [
|
|
|
141
141
|
"@stylistic/operator-linebreak": ["error", "after"], // More nice
|
|
142
142
|
"@stylistic/no-extra-parens": "off",
|
|
143
143
|
"@stylistic/dot-location": ["error", "property"], // Maybe later?
|
|
144
|
+
"@stylistic/indent-binary-ops": ["error", 4], // Other indends in stylistic 4
|
|
144
145
|
|
|
145
146
|
/**
|
|
146
147
|
* React rules
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@labeg/code-style",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.5.1",
|
|
4
4
|
"author": "Eugene Labutin",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://github.com/LabEG/code-style#readme",
|
|
@@ -22,34 +22,34 @@
|
|
|
22
22
|
"scripts": {
|
|
23
23
|
"test": "eslint tests/**",
|
|
24
24
|
"release": "cliff-jumper --name '@labeg/code-style' --package-path '.' --no-skip-changelog --no-skip-tag",
|
|
25
|
-
"prepare": "husky
|
|
25
|
+
"prepare": "husky"
|
|
26
26
|
},
|
|
27
27
|
"peerDependencies": {
|
|
28
28
|
"react": ">=15.0.0",
|
|
29
29
|
"typescript": ">=5.0.0"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@eslint/js": "^9.
|
|
33
|
-
"@stylistic/eslint-plugin": "^5.
|
|
32
|
+
"@eslint/js": "^9.39.1",
|
|
33
|
+
"@stylistic/eslint-plugin": "^5.5.0",
|
|
34
34
|
"@stylistic/eslint-plugin-migrate": "^4.4.1",
|
|
35
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
36
|
-
"@typescript-eslint/parser": "^8.
|
|
37
|
-
"eslint": "^9.
|
|
35
|
+
"@typescript-eslint/eslint-plugin": "^8.46.4",
|
|
36
|
+
"@typescript-eslint/parser": "^8.46.4",
|
|
37
|
+
"eslint": "^9.39.1",
|
|
38
38
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
39
39
|
"eslint-plugin-react": "^7.37.5",
|
|
40
|
-
"eslint-plugin-react-hooks": "^
|
|
41
|
-
"globals": "^16.
|
|
42
|
-
"typescript-eslint": "^8.
|
|
40
|
+
"eslint-plugin-react-hooks": "^7.0.1",
|
|
41
|
+
"globals": "^16.5.0",
|
|
42
|
+
"typescript-eslint": "^8.46.4"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@commitlint/cli": "^
|
|
46
|
-
"@commitlint/config-conventional": "^
|
|
45
|
+
"@commitlint/cli": "^20.1.0",
|
|
46
|
+
"@commitlint/config-conventional": "^20.0.0",
|
|
47
47
|
"@favware/cliff-jumper": "^6.0.0",
|
|
48
|
-
"@types/react": "^19.
|
|
48
|
+
"@types/react": "^19.2.5",
|
|
49
49
|
"husky": "^9.1.7",
|
|
50
|
-
"lint-staged": "^16.
|
|
51
|
-
"react": "^19.
|
|
52
|
-
"typescript": "^5.
|
|
50
|
+
"lint-staged": "^16.2.6",
|
|
51
|
+
"react": "^19.2.0",
|
|
52
|
+
"typescript": "^5.9.3"
|
|
53
53
|
},
|
|
54
54
|
"keywords": [
|
|
55
55
|
"code style",
|