aberlaas-lint 2.11.0 → 2.13.0
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/configs/eslint.js +4 -1
- package/package.json +9 -9
package/configs/eslint.js
CHANGED
|
@@ -81,7 +81,6 @@ export default [
|
|
|
81
81
|
'no-shadow': ['error'],
|
|
82
82
|
'object-shorthand': ['error', 'always'],
|
|
83
83
|
'quote-props': ['error', 'consistent-as-needed'],
|
|
84
|
-
quotes: ['error', 'single', { avoidEscape: true }],
|
|
85
84
|
'sort-imports': ['error', { ignoreDeclarationSort: true }],
|
|
86
85
|
// Node
|
|
87
86
|
'n/no-unsupported-features/es-syntax': [
|
|
@@ -118,6 +117,10 @@ export default [
|
|
|
118
117
|
'jsdoc/valid-types': ['warn'],
|
|
119
118
|
// Prettier
|
|
120
119
|
...pluginPrettierRecommended.rules,
|
|
120
|
+
// Prettier overwrites
|
|
121
|
+
// quotes: We want `hello world` to be converted into 'hello world', but
|
|
122
|
+
// Prettier doesn't do that, so we need to make eslint do it
|
|
123
|
+
quotes: ['error', 'single', { avoidEscape: true }],
|
|
121
124
|
},
|
|
122
125
|
settings: {
|
|
123
126
|
// eslint-plugin-import doesn't currently support the "exports" syntax in
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "aberlaas-lint",
|
|
3
3
|
"type": "module",
|
|
4
4
|
"description": "aberlaas lint command: Lint files",
|
|
5
|
-
"version": "2.
|
|
5
|
+
"version": "2.13.0",
|
|
6
6
|
"repository": "pixelastic/aberlaas",
|
|
7
7
|
"homepage": "https://projects.pixelastic.com/aberlaas/",
|
|
8
8
|
"author": "Tim Carry (@pixelastic)",
|
|
@@ -38,24 +38,24 @@
|
|
|
38
38
|
"lint:fix": "../../scripts/local/lint-fix"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@eslint/js": "9.
|
|
42
|
-
"@typescript-eslint/utils": "8.
|
|
41
|
+
"@eslint/js": "9.15.0",
|
|
42
|
+
"@typescript-eslint/utils": "8.15.0",
|
|
43
43
|
"@vitest/eslint-plugin": "1.1.10",
|
|
44
|
-
"aberlaas-helper": "^2.
|
|
45
|
-
"aberlaas-versions": "^2.
|
|
44
|
+
"aberlaas-helper": "^2.13.0",
|
|
45
|
+
"aberlaas-versions": "^2.13.0",
|
|
46
46
|
"ci-info": "4.1.0",
|
|
47
|
-
"eslint": "9.
|
|
47
|
+
"eslint": "9.15.0",
|
|
48
48
|
"eslint-config-prettier": "9.1.0",
|
|
49
49
|
"eslint-plugin-import": "2.31.0",
|
|
50
50
|
"eslint-plugin-jsdoc": "50.5.0",
|
|
51
|
-
"eslint-plugin-n": "17.
|
|
51
|
+
"eslint-plugin-n": "17.14.0",
|
|
52
52
|
"eslint-plugin-prettier": "5.2.1",
|
|
53
|
-
"firost": "4.
|
|
53
|
+
"firost": "4.8.0",
|
|
54
54
|
"golgoth": "2.4.0",
|
|
55
55
|
"prettier": "3.3.3",
|
|
56
56
|
"stylelint": "16.10.0",
|
|
57
57
|
"typescript": "5.6.3",
|
|
58
58
|
"yaml-lint": "1.7.0"
|
|
59
59
|
},
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "a8a1ee486fa1faeac6b7a524e7a6e41d5503dbc0"
|
|
61
61
|
}
|