@aarongoldenthal/stylelint-config-standard 22.0.0 → 24.0.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/index.js +13 -1
- package/package.json +11 -11
package/index.js
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
/* eslint-disable unicorn/no-null -- null required to disable rules */
|
|
2
2
|
export default {
|
|
3
|
+
languageOptions: {
|
|
4
|
+
directionality: {
|
|
5
|
+
block: 'top-to-bottom',
|
|
6
|
+
inline: 'left-to-right'
|
|
7
|
+
}
|
|
8
|
+
},
|
|
3
9
|
overrides: [
|
|
4
10
|
{
|
|
5
11
|
customSyntax: 'postcss-html',
|
|
@@ -172,9 +178,11 @@ export default {
|
|
|
172
178
|
'number-max-precision': 4,
|
|
173
179
|
'property-allowed-list': null,
|
|
174
180
|
'property-disallowed-list': null,
|
|
181
|
+
'property-layout-mappings': 'flow-relative',
|
|
175
182
|
'property-no-deprecated': true,
|
|
176
183
|
'property-no-unknown': true,
|
|
177
184
|
'property-no-vendor-prefix': true,
|
|
185
|
+
'relative-selector-nesting-notation': 'explicit',
|
|
178
186
|
'rule-empty-line-before': [
|
|
179
187
|
'always-multi-line',
|
|
180
188
|
{
|
|
@@ -216,6 +224,8 @@ export default {
|
|
|
216
224
|
'selector-max-type': null,
|
|
217
225
|
'selector-max-universal': null,
|
|
218
226
|
'selector-nested-pattern': null,
|
|
227
|
+
'selector-no-deprecated': true,
|
|
228
|
+
'selector-no-invalid': true,
|
|
219
229
|
'selector-no-qualifying-type': null,
|
|
220
230
|
'selector-no-vendor-prefix': true,
|
|
221
231
|
'selector-not-notation': 'complex',
|
|
@@ -252,8 +262,10 @@ export default {
|
|
|
252
262
|
`vw`
|
|
253
263
|
],
|
|
254
264
|
'unit-disallowed-list': null,
|
|
265
|
+
'unit-layout-mappings': null,
|
|
255
266
|
'unit-no-unknown': true,
|
|
256
267
|
'value-keyword-case': 'lower',
|
|
268
|
+
'value-keyword-layout-mappings': 'flow-relative',
|
|
257
269
|
'value-no-vendor-prefix': [
|
|
258
270
|
true,
|
|
259
271
|
{
|
|
@@ -275,7 +287,7 @@ export default {
|
|
|
275
287
|
'order/properties-alphabetical-order': true,
|
|
276
288
|
// eslint-disable-next-line sort-keys -- keep plugin rules separate
|
|
277
289
|
'logical-css/require-logical-keywords': true,
|
|
278
|
-
'logical-css/require-logical-properties':
|
|
290
|
+
'logical-css/require-logical-properties': null,
|
|
279
291
|
'logical-css/require-logical-units': null
|
|
280
292
|
}
|
|
281
293
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aarongoldenthal/stylelint-config-standard",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "24.0.0",
|
|
4
4
|
"description": "Standard StyleLint configuration settings",
|
|
5
5
|
"exports": "./index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"author": "Aaron Goldenthal <npm@aarongoldenthal.com>",
|
|
26
26
|
"license": "MIT",
|
|
27
27
|
"engines": {
|
|
28
|
-
"node": "^
|
|
28
|
+
"node": "^22.11.0 || ^24.11.0 || >=26"
|
|
29
29
|
},
|
|
30
30
|
"files": [
|
|
31
31
|
"index.js"
|
|
@@ -38,18 +38,18 @@
|
|
|
38
38
|
"postcss-html": "1.8.1",
|
|
39
39
|
"stylelint-declaration-strict-value": "1.11.1",
|
|
40
40
|
"stylelint-order": "8.1.1",
|
|
41
|
-
"stylelint-plugin-logical-css": "2.0
|
|
41
|
+
"stylelint-plugin-logical-css": "2.1.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@aarongoldenthal/eslint-config-standard": "
|
|
45
|
-
"@vitest/coverage-v8": "4.1.
|
|
46
|
-
"eslint": "
|
|
47
|
-
"markdownlint-cli2": "0.
|
|
48
|
-
"prettier": "3.8.
|
|
49
|
-
"stylelint": "17.
|
|
50
|
-
"vitest": "4.1.
|
|
44
|
+
"@aarongoldenthal/eslint-config-standard": "45.0.2",
|
|
45
|
+
"@vitest/coverage-v8": "4.1.5",
|
|
46
|
+
"eslint": "10.3.0",
|
|
47
|
+
"markdownlint-cli2": "0.22.1",
|
|
48
|
+
"prettier": "3.8.3",
|
|
49
|
+
"stylelint": "17.10.0",
|
|
50
|
+
"vitest": "4.1.5"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
|
-
"stylelint": "^17.
|
|
53
|
+
"stylelint": "^17.10.0"
|
|
54
54
|
}
|
|
55
55
|
}
|