@azat-io/stylelint-config 1.1.0 → 1.2.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/dist/index.js +5 -0
- package/package.json +2 -2
- package/readme.md +1 -0
package/dist/index.js
CHANGED
|
@@ -26,6 +26,7 @@ const index = p({
|
|
|
26
26
|
"at-rule-no-vendor-prefix": true,
|
|
27
27
|
"at-rule-prelude-no-invalid": true,
|
|
28
28
|
"block-no-empty": true,
|
|
29
|
+
"block-no-redundant-nested-style-rules": true,
|
|
29
30
|
"color-function-notation": "modern",
|
|
30
31
|
"color-named": "never",
|
|
31
32
|
"color-no-hex": true,
|
|
@@ -98,15 +99,19 @@ const index = p({
|
|
|
98
99
|
"media-feature-name-value-no-unknown": true,
|
|
99
100
|
"media-feature-range-notation": "context",
|
|
100
101
|
"media-query-no-invalid": true,
|
|
102
|
+
"media-type-no-deprecated": true,
|
|
101
103
|
"named-grid-areas-no-invalid": true,
|
|
104
|
+
"nesting-selector-no-missing-scoping-root": true,
|
|
102
105
|
"no-descending-specificity": true,
|
|
103
106
|
"no-duplicate-at-import-rules": true,
|
|
104
107
|
"no-duplicate-selectors": true,
|
|
105
108
|
"no-invalid-double-slash-comments": true,
|
|
106
109
|
"no-invalid-position-at-import-rule": true,
|
|
110
|
+
"no-invalid-position-declaration": true,
|
|
107
111
|
"no-unknown-animations": true,
|
|
108
112
|
"no-unknown-custom-media": true,
|
|
109
113
|
"number-max-precision": 4,
|
|
114
|
+
"property-no-deprecated": true,
|
|
110
115
|
"property-no-unknown": true,
|
|
111
116
|
"property-no-vendor-prefix": true,
|
|
112
117
|
"rule-empty-line-before": [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azat-io/stylelint-config",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "Stylelint shareable config",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"stylelint",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"stylelint-use-nesting": "^6.0.0"
|
|
27
27
|
},
|
|
28
28
|
"peerDependencies": {
|
|
29
|
-
"stylelint": "^16.
|
|
29
|
+
"stylelint": "^16.23.0"
|
|
30
30
|
},
|
|
31
31
|
"engines": {
|
|
32
32
|
"node": ">=18.0.0"
|