@open-xchange/linter-presets 1.2.2 → 1.2.3
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 +5 -0
- package/dist/eslint/index.js +2 -0
- package/package.json +7 -4
- package/tsconfig.config.json +5 -0
package/CHANGELOG.md
CHANGED
package/dist/eslint/index.js
CHANGED
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.3",
|
|
4
4
|
"description": "Configuration presets for ESLint and StyleLint",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"prepare": "yarn build",
|
|
18
18
|
"prepack": "yarn build && yarn lint && yarn test",
|
|
19
19
|
"build": "premove dist && tsc",
|
|
20
|
-
"lint": "eslint .",
|
|
20
|
+
"lint": "tsc --project tsconfig.config.json && eslint .",
|
|
21
21
|
"test": "cd test && eslint ."
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
@@ -33,6 +33,7 @@
|
|
|
33
33
|
"@stylistic/eslint-plugin-migrate": "^2.12.1",
|
|
34
34
|
"@stylistic/stylelint-config": "^2.0.0",
|
|
35
35
|
"@stylistic/stylelint-plugin": "^3.1.1",
|
|
36
|
+
"@types/picomatch": "^3.0.1",
|
|
36
37
|
"@vitest/eslint-plugin": "^1.1.24",
|
|
37
38
|
"confusing-browser-globals": "^1.0.11",
|
|
38
39
|
"eslint-plugin-chai-expect": "^3.1.0",
|
|
@@ -66,12 +67,14 @@
|
|
|
66
67
|
"vue-eslint-parser": "^9.4.3"
|
|
67
68
|
},
|
|
68
69
|
"devDependencies": {
|
|
70
|
+
"@humanwhocodes/momoa": "^3.3.6",
|
|
69
71
|
"@types/confusing-browser-globals": "^1.0.3",
|
|
70
|
-
"@types/
|
|
72
|
+
"@types/eslint-scope": "^3.7.7",
|
|
71
73
|
"@typescript-eslint/utils": "^8.19.1",
|
|
72
74
|
"better-typescript-lib": "^2.10.0",
|
|
73
|
-
"eslint": "^9.
|
|
75
|
+
"eslint": "^9.18.0",
|
|
74
76
|
"jest": "^29.7.0",
|
|
77
|
+
"jiti": "^2.4.2",
|
|
75
78
|
"premove": "^4.0.0",
|
|
76
79
|
"stylelint": "^16.12.0",
|
|
77
80
|
"typescript": "^5.7.3"
|