@open-xchange/linter-presets 1.2.25 → 1.2.27
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/dist/stylelint/index.js +1 -0
- package/package.json +16 -16
package/CHANGELOG.md
CHANGED
package/dist/stylelint/index.js
CHANGED
|
@@ -65,6 +65,7 @@ export function configure(options) {
|
|
|
65
65
|
"no-descending-specificity": null,
|
|
66
66
|
"no-unknown-animations": true,
|
|
67
67
|
"rule-empty-line-before": null,
|
|
68
|
+
"shorthand-property-no-redundant-values": [true, { ignore: ["four-into-three-edge-values"] }],
|
|
68
69
|
// license-header plugin
|
|
69
70
|
...(options?.license ? { "plugin/license-header": [true, { license: options.license }] } : null),
|
|
70
71
|
// stylistic plugin
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@open-xchange/linter-presets",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.27",
|
|
4
4
|
"description": "Configuration presets for ESLint and StyleLint",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"engines": {
|
|
12
12
|
"node": ">=20.18"
|
|
13
13
|
},
|
|
14
|
-
"packageManager": "yarn@4.9.
|
|
14
|
+
"packageManager": "yarn@4.9.1",
|
|
15
15
|
"type": "module",
|
|
16
16
|
"exports": "./dist/index.js",
|
|
17
17
|
"files": [
|
|
@@ -24,23 +24,23 @@
|
|
|
24
24
|
"clean": "premove dist",
|
|
25
25
|
"build": "yarn clean && tsc --project src/tsconfig.json",
|
|
26
26
|
"lint": "tsc && tsc --project src/tsconfig.json --noEmit && eslint .",
|
|
27
|
-
"test": "cd test && eslint ."
|
|
27
|
+
"test": "cd test && eslint . && stylelint \"**/*.{css,scss}\""
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@babel/core": "^7.26.10",
|
|
31
31
|
"@babel/eslint-parser": "^7.27.0",
|
|
32
32
|
"@babel/plugin-proposal-decorators": "^7.25.9",
|
|
33
|
-
"@eslint-community/eslint-plugin-eslint-comments": "^4.
|
|
34
|
-
"@eslint-react/eslint-plugin": "^1.
|
|
33
|
+
"@eslint-community/eslint-plugin-eslint-comments": "^4.5.0",
|
|
34
|
+
"@eslint-react/eslint-plugin": "^1.48.4",
|
|
35
35
|
"@eslint/compat": "^1.2.8",
|
|
36
|
-
"@eslint/js": "^9.
|
|
37
|
-
"@eslint/markdown": "^6.
|
|
36
|
+
"@eslint/js": "^9.25.1",
|
|
37
|
+
"@eslint/markdown": "^6.4.0",
|
|
38
38
|
"@stylistic/eslint-plugin": "^4.2.0",
|
|
39
39
|
"@stylistic/eslint-plugin-migrate": "^4.2.0",
|
|
40
40
|
"@stylistic/stylelint-config": "^2.0.0",
|
|
41
41
|
"@stylistic/stylelint-plugin": "^3.1.2",
|
|
42
42
|
"@types/picomatch": "^4.0.0",
|
|
43
|
-
"@vitest/eslint-plugin": "^1.1.
|
|
43
|
+
"@vitest/eslint-plugin": "^1.1.43",
|
|
44
44
|
"confusing-browser-globals": "^1.0.11",
|
|
45
45
|
"eslint-plugin-chai-expect": "^3.1.0",
|
|
46
46
|
"eslint-plugin-codeceptjs": "^1.3.0",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"eslint-plugin-jest": "^28.11.0",
|
|
50
50
|
"eslint-plugin-jest-dom": "^5.5.0",
|
|
51
51
|
"eslint-plugin-jest-extended": "^3.0.0",
|
|
52
|
-
"eslint-plugin-jsdoc": "^50.6.
|
|
52
|
+
"eslint-plugin-jsdoc": "^50.6.10",
|
|
53
53
|
"eslint-plugin-jsonc": "^2.20.0",
|
|
54
54
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
55
55
|
"eslint-plugin-license-header": "^0.8.0",
|
|
@@ -57,10 +57,10 @@
|
|
|
57
57
|
"eslint-plugin-promise": "^7.2.1",
|
|
58
58
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
59
59
|
"eslint-plugin-react-hooks-static-deps": "^1.0.7",
|
|
60
|
-
"eslint-plugin-react-refresh": "^0.4.
|
|
60
|
+
"eslint-plugin-react-refresh": "^0.4.20",
|
|
61
61
|
"eslint-plugin-testing-library": "^7.1.1",
|
|
62
62
|
"eslint-plugin-vue": "^10.0.0",
|
|
63
|
-
"eslint-plugin-yml": "^1.
|
|
63
|
+
"eslint-plugin-yml": "^1.18.0",
|
|
64
64
|
"find-up": "^7.0.0",
|
|
65
65
|
"globals": "^16.0.0",
|
|
66
66
|
"picomatch": "^4.0.2",
|
|
@@ -70,19 +70,19 @@
|
|
|
70
70
|
"stylelint-config-standard-scss": "^14.0.0",
|
|
71
71
|
"stylelint-config-standard-vue": "^1.0.0",
|
|
72
72
|
"stylelint-plugin-license-header": "^1.0.3",
|
|
73
|
-
"typescript-eslint": "^8.
|
|
73
|
+
"typescript-eslint": "^8.31.0",
|
|
74
74
|
"vue-eslint-parser": "^10.1.3"
|
|
75
75
|
},
|
|
76
76
|
"devDependencies": {
|
|
77
77
|
"@types/confusing-browser-globals": "^1.0.3",
|
|
78
78
|
"@types/eslint-scope": "^3.7.7",
|
|
79
|
-
"@types/react": "^19.1.
|
|
80
|
-
"@typescript-eslint/utils": "^8.
|
|
81
|
-
"eslint": "^9.
|
|
79
|
+
"@types/react": "^19.1.2",
|
|
80
|
+
"@typescript-eslint/utils": "^8.31.0",
|
|
81
|
+
"eslint": "^9.25.1",
|
|
82
82
|
"jest": "^29.7.0",
|
|
83
83
|
"jiti": "^2.4.2",
|
|
84
84
|
"premove": "^4.0.0",
|
|
85
|
-
"stylelint": "^16.
|
|
85
|
+
"stylelint": "^16.19.0",
|
|
86
86
|
"typescript": "^5.8.3"
|
|
87
87
|
},
|
|
88
88
|
"peerDependencies": {
|