@aarongoldenthal/stylelint-config-standard 21.0.0 → 22.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/LICENSE +1 -1
- package/index.js +11 -5
- package/package.json +14 -14
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
The MIT License (MIT)
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2021 -
|
|
3
|
+
Copyright (c) 2021 - 2026 Aaron Goldenthal
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/index.js
CHANGED
|
@@ -10,7 +10,7 @@ export default {
|
|
|
10
10
|
plugins: [
|
|
11
11
|
'stylelint-declaration-strict-value',
|
|
12
12
|
'stylelint-order',
|
|
13
|
-
'stylelint-
|
|
13
|
+
'stylelint-plugin-logical-css'
|
|
14
14
|
],
|
|
15
15
|
reportDescriptionlessDisables: true,
|
|
16
16
|
reportInvalidScopeDisables: true,
|
|
@@ -115,6 +115,7 @@ export default {
|
|
|
115
115
|
'declaration-property-value-disallowed-list': null,
|
|
116
116
|
'declaration-property-value-keyword-no-deprecated': true,
|
|
117
117
|
'declaration-property-value-no-unknown': true,
|
|
118
|
+
'display-notation': 'short',
|
|
118
119
|
'font-family-name-quotes': 'always-where-recommended',
|
|
119
120
|
'font-family-no-duplicate-names': true,
|
|
120
121
|
'font-family-no-missing-generic-family-keyword': true,
|
|
@@ -181,6 +182,7 @@ export default {
|
|
|
181
182
|
ignore: ['after-comment']
|
|
182
183
|
}
|
|
183
184
|
],
|
|
185
|
+
'rule-nesting-at-rule-required-list': null,
|
|
184
186
|
'rule-selector-property-disallowed-list': null,
|
|
185
187
|
'selector-anb-no-unmatchable': true,
|
|
186
188
|
'selector-attribute-name-disallowed-list': null,
|
|
@@ -260,9 +262,6 @@ export default {
|
|
|
260
262
|
}
|
|
261
263
|
],
|
|
262
264
|
// eslint-disable-next-line sort-keys -- keep plugin rules separate
|
|
263
|
-
'order/properties-alphabetical-order': true,
|
|
264
|
-
// eslint-disable-next-line sort-keys -- keep plugin rules separate
|
|
265
|
-
'liberty/use-logical-spec': 'always',
|
|
266
265
|
'scale-unlimited/declaration-strict-value': [
|
|
267
266
|
'/color$/',
|
|
268
267
|
{
|
|
@@ -270,6 +269,13 @@ export default {
|
|
|
270
269
|
ignoreValues: ['inherit', 'transparent', 'currentColor'],
|
|
271
270
|
recurseLonghand: true
|
|
272
271
|
}
|
|
273
|
-
]
|
|
272
|
+
],
|
|
273
|
+
// eslint-disable-next-line sort-keys -- keep plugin rules separate
|
|
274
|
+
'order/custom-properties-alphabetical-order': true,
|
|
275
|
+
'order/properties-alphabetical-order': true,
|
|
276
|
+
// eslint-disable-next-line sort-keys -- keep plugin rules separate
|
|
277
|
+
'logical-css/require-logical-keywords': true,
|
|
278
|
+
'logical-css/require-logical-properties': true,
|
|
279
|
+
'logical-css/require-logical-units': null
|
|
274
280
|
}
|
|
275
281
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aarongoldenthal/stylelint-config-standard",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "22.0.0",
|
|
4
4
|
"description": "Standard StyleLint configuration settings",
|
|
5
5
|
"exports": "./index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"lint:md": "markdownlint-cli2 \"**/*.md\" \"#node_modules\"",
|
|
13
13
|
"prettier:check": "prettier --check .",
|
|
14
14
|
"prettier:fix": "prettier --write .",
|
|
15
|
-
"test": "vitest run
|
|
15
|
+
"test": "vitest run",
|
|
16
16
|
"test:no-coverage": "vitest run"
|
|
17
17
|
},
|
|
18
18
|
"repository": {
|
|
@@ -35,21 +35,21 @@
|
|
|
35
35
|
},
|
|
36
36
|
"homepage": "https://gitlab.com/gitlab-ci-utils/node/stylelint-config-standard",
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"postcss-html": "1.8.
|
|
39
|
-
"stylelint-declaration-strict-value": "1.
|
|
40
|
-
"stylelint-order": "
|
|
41
|
-
"stylelint-
|
|
38
|
+
"postcss-html": "1.8.1",
|
|
39
|
+
"stylelint-declaration-strict-value": "1.11.1",
|
|
40
|
+
"stylelint-order": "8.1.1",
|
|
41
|
+
"stylelint-plugin-logical-css": "2.0.2"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@aarongoldenthal/eslint-config-standard": "
|
|
45
|
-
"@vitest/coverage-v8": "
|
|
46
|
-
"eslint": "9.
|
|
47
|
-
"markdownlint-cli2": "0.
|
|
48
|
-
"prettier": "3.
|
|
49
|
-
"stylelint": "
|
|
50
|
-
"vitest": "
|
|
44
|
+
"@aarongoldenthal/eslint-config-standard": "44.0.1",
|
|
45
|
+
"@vitest/coverage-v8": "4.1.0",
|
|
46
|
+
"eslint": "9.39.4",
|
|
47
|
+
"markdownlint-cli2": "0.21.0",
|
|
48
|
+
"prettier": "3.8.1",
|
|
49
|
+
"stylelint": "17.5.0",
|
|
50
|
+
"vitest": "4.1.0"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
|
-
"stylelint": "^
|
|
53
|
+
"stylelint": "^17.1.0"
|
|
54
54
|
}
|
|
55
55
|
}
|