@alexlit/config-stylelint 45.15.3 → 46.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 +0 -0
- package/index.js +5 -4
- package/package.json +9 -9
- package/plugins/a11y.js +0 -0
- package/plugins/at-rule-no-children.js +0 -0
- package/plugins/color-format.js +0 -0
- package/plugins/declaration-block-no-ignored-properties.js +0 -0
- package/plugins/gamut.js +0 -0
- package/plugins/high-performance-animation.js +0 -0
- package/plugins/logical-css.js +0 -0
- package/plugins/no-indistinguishable-colors.js +0 -0
- package/plugins/no-nested-media.js +0 -0
- package/plugins/no-unresolved-module.js +0 -0
- package/plugins/no-unsupported-browser-features.js +0 -0
- package/plugins/order.js +0 -0
- package/plugins/prettier.js +0 -0
- package/plugins/scss.js +0 -0
- package/plugins/selector-no-empty.js +0 -0
- package/plugins/use-nesting.js +0 -0
package/LICENSE
CHANGED
|
File without changes
|
package/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* eslint-disable
|
|
1
|
+
/* eslint-disable unicorn/no-null */
|
|
2
2
|
|
|
3
3
|
const ADDITIONAL_PLUGINS = {
|
|
4
4
|
/** @see [stylelint-a11y](https://github.com/double-great/stylelint-a11y) */
|
|
@@ -22,9 +22,6 @@ const ADDITIONAL_PLUGINS = {
|
|
|
22
22
|
/** @see [stylelint-no-unresolved-module](https://github.com/niksy/stylelint-no-unresolved-module) */
|
|
23
23
|
'no-unresolved-module': true,
|
|
24
24
|
|
|
25
|
-
/** @see [stylelint-no-unsupported-browser-features](https://github.com/ismay/stylelint-no-unsupported-browser-features) */
|
|
26
|
-
'no-unsupported-browser-features': true,
|
|
27
|
-
|
|
28
25
|
/** @see [stylelint-order](https://github.com/hudochenkov/stylelint-order) */
|
|
29
26
|
order: true,
|
|
30
27
|
|
|
@@ -50,6 +47,9 @@ const OPTIONAL_PLUGINS = {
|
|
|
50
47
|
|
|
51
48
|
/** @see [stylelint-no-indistinguishable-colors](https://github.com/ierhyna/stylelint-no-indistinguishable-colors) */
|
|
52
49
|
'no-indistinguishable-colors': false,
|
|
50
|
+
|
|
51
|
+
/** @see [stylelint-no-unsupported-browser-features](https://github.com/ismay/stylelint-no-unsupported-browser-features) */
|
|
52
|
+
'no-unsupported-browser-features': false,
|
|
53
53
|
};
|
|
54
54
|
|
|
55
55
|
const CODESTYLE_PLUGINS = {
|
|
@@ -145,6 +145,7 @@ const createConfig = (plugins = {}, options = {}) => ({
|
|
|
145
145
|
true,
|
|
146
146
|
{
|
|
147
147
|
ignoreProperties: {
|
|
148
|
+
// eslint-disable-next-line sonarjs/anchor-precedence
|
|
148
149
|
'/.+/': /^(v-(bind|deep|global|slotted)|theme|view)|\$/,
|
|
149
150
|
},
|
|
150
151
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alexlit/config-stylelint",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "46.0.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Stylelint config",
|
|
6
6
|
"keywords": [
|
|
@@ -28,14 +28,9 @@
|
|
|
28
28
|
"index.js",
|
|
29
29
|
"plugins"
|
|
30
30
|
],
|
|
31
|
-
"scripts": {
|
|
32
|
-
"release": "../../scripts/release.sh",
|
|
33
|
-
"semver": "../../scripts/semver.sh",
|
|
34
|
-
"up": "../../scripts/up.sh"
|
|
35
|
-
},
|
|
36
31
|
"dependencies": {
|
|
37
32
|
"@double-great/stylelint-a11y": "^3.0.2",
|
|
38
|
-
"postcss": "^8.4.
|
|
33
|
+
"postcss": "^8.4.45",
|
|
39
34
|
"postcss-html": "^1.7.0",
|
|
40
35
|
"prettier": "^3.3.3",
|
|
41
36
|
"stylelint": "^16.9.0",
|
|
@@ -56,9 +51,14 @@
|
|
|
56
51
|
"stylelint-prettier": "^5.0.2",
|
|
57
52
|
"stylelint-scss": "^6.5.1",
|
|
58
53
|
"stylelint-selector-no-empty": "^1.0.9",
|
|
59
|
-
"stylelint-use-nesting": "^
|
|
54
|
+
"stylelint-use-nesting": "^6.0.0"
|
|
60
55
|
},
|
|
61
56
|
"engines": {
|
|
62
57
|
"node": ">=18.18"
|
|
58
|
+
},
|
|
59
|
+
"scripts": {
|
|
60
|
+
"release": "../../scripts/release.sh",
|
|
61
|
+
"semver": "../../scripts/semver.sh",
|
|
62
|
+
"up": "../../scripts/up.sh"
|
|
63
63
|
}
|
|
64
|
-
}
|
|
64
|
+
}
|
package/plugins/a11y.js
CHANGED
|
File without changes
|
|
File without changes
|
package/plugins/color-format.js
CHANGED
|
File without changes
|
|
File without changes
|
package/plugins/gamut.js
CHANGED
|
File without changes
|
|
File without changes
|
package/plugins/logical-css.js
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/plugins/order.js
CHANGED
|
File without changes
|
package/plugins/prettier.js
CHANGED
|
File without changes
|
package/plugins/scss.js
CHANGED
|
File without changes
|
|
File without changes
|
package/plugins/use-nesting.js
CHANGED
|
File without changes
|