@open-xchange/linter-presets 1.2.28 → 1.2.30
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 +8 -0
- package/dist/eslint/index.js +4 -3
- package/dist/stylelint/index.js +5 -1
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## `1.2.30` – 2025-May-01
|
|
4
|
+
|
|
5
|
+
- chore: bump dependencies
|
|
6
|
+
|
|
7
|
+
## `1.2.29` – 2025-Apr-29
|
|
8
|
+
|
|
9
|
+
- added: (ESLint) ignore top-level "coverage" directory
|
|
10
|
+
|
|
3
11
|
## `1.2.28` – 2025-Apr-29
|
|
4
12
|
|
|
5
13
|
- added: (ESLint) allow vitest type-checking expectations
|
package/dist/eslint/index.js
CHANGED
|
@@ -50,11 +50,12 @@ export const env = {
|
|
|
50
50
|
*/
|
|
51
51
|
export function configure(options) {
|
|
52
52
|
const ignores = [
|
|
53
|
-
"*/.yarn
|
|
54
|
-
"dist
|
|
53
|
+
"*/.yarn",
|
|
54
|
+
"dist",
|
|
55
55
|
"vite.config.ts.*.mjs",
|
|
56
|
-
"gitlab-ci
|
|
56
|
+
"gitlab-ci",
|
|
57
57
|
".gitlab-ci.yml",
|
|
58
|
+
"coverage", // Vitest
|
|
58
59
|
".nuxt", // NuxtJS
|
|
59
60
|
".output", // NuxtJS
|
|
60
61
|
...(options?.ignores ?? []),
|
package/dist/stylelint/index.js
CHANGED
|
@@ -11,7 +11,11 @@
|
|
|
11
11
|
*/
|
|
12
12
|
export function configure(options) {
|
|
13
13
|
const ignoreFiles = [
|
|
14
|
-
"
|
|
14
|
+
"node_modules",
|
|
15
|
+
"dist",
|
|
16
|
+
"coverage", // Vitest
|
|
17
|
+
".nuxt", // NuxtJS
|
|
18
|
+
".output", // NuxtJS
|
|
15
19
|
...(options?.ignores ?? []),
|
|
16
20
|
];
|
|
17
21
|
// resolve stylistic configuration options
|
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.30",
|
|
4
4
|
"description": "Configuration presets for ESLint and StyleLint",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -27,11 +27,11 @@
|
|
|
27
27
|
"test": "cd test && eslint . && stylelint \"**/*.{css,scss}\""
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@babel/core": "^7.
|
|
31
|
-
"@babel/eslint-parser": "^7.27.
|
|
32
|
-
"@babel/plugin-proposal-decorators": "^7.
|
|
30
|
+
"@babel/core": "^7.27.1",
|
|
31
|
+
"@babel/eslint-parser": "^7.27.1",
|
|
32
|
+
"@babel/plugin-proposal-decorators": "^7.27.1",
|
|
33
33
|
"@eslint-community/eslint-plugin-eslint-comments": "^4.5.0",
|
|
34
|
-
"@eslint-react/eslint-plugin": "^1.48.
|
|
34
|
+
"@eslint-react/eslint-plugin": "^1.48.5",
|
|
35
35
|
"@eslint/compat": "^1.2.8",
|
|
36
36
|
"@eslint/js": "^9.25.1",
|
|
37
37
|
"@eslint/markdown": "^6.4.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.11",
|
|
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",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"eslint-plugin-react-hooks-static-deps": "^1.0.7",
|
|
60
60
|
"eslint-plugin-react-refresh": "^0.4.20",
|
|
61
61
|
"eslint-plugin-testing-library": "^7.1.1",
|
|
62
|
-
"eslint-plugin-vue": "^10.
|
|
62
|
+
"eslint-plugin-vue": "^10.1.0",
|
|
63
63
|
"eslint-plugin-yml": "^1.18.0",
|
|
64
64
|
"find-up": "^7.0.0",
|
|
65
65
|
"globals": "^16.0.0",
|
|
@@ -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.31.
|
|
73
|
+
"typescript-eslint": "^8.31.1",
|
|
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
79
|
"@types/react": "^19.1.2",
|
|
80
|
-
"@typescript-eslint/utils": "^8.31.
|
|
80
|
+
"@typescript-eslint/utils": "^8.31.1",
|
|
81
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.19.
|
|
85
|
+
"stylelint": "^16.19.1",
|
|
86
86
|
"typescript": "^5.8.3"
|
|
87
87
|
},
|
|
88
88
|
"peerDependencies": {
|