@davidsneighbour/stylelint-config 5.5.26 → 5.6.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 +4 -1
- package/package.json +9 -9
package/index.js
CHANGED
|
@@ -8,6 +8,7 @@ const config = {
|
|
|
8
8
|
"extends": ["stylelint-config-standard-scss"],
|
|
9
9
|
"ignoreFiles": [],
|
|
10
10
|
"plugins": [
|
|
11
|
+
"stylelint-no-unsupported-browser-features",
|
|
11
12
|
"stylelint-order",
|
|
12
13
|
"stylelint-use-nesting"
|
|
13
14
|
],
|
|
@@ -183,7 +184,9 @@ const config = {
|
|
|
183
184
|
true,
|
|
184
185
|
{
|
|
185
186
|
"browsers": "extends @davidsneighbour/browserslist-config",
|
|
186
|
-
"severity": "warning"
|
|
187
|
+
"severity": "warning",
|
|
188
|
+
"ignore": ["rem"],
|
|
189
|
+
"ignorePartialSupport": true
|
|
187
190
|
}
|
|
188
191
|
],
|
|
189
192
|
"property-no-unknown": true,
|
package/package.json
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@davidsneighbour/stylelint-config",
|
|
3
3
|
"description": "Stylelint configuration for use in @davidsneighbour projects.",
|
|
4
|
-
"version": "5.
|
|
4
|
+
"version": "5.6.0",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": "davidsneighbour/configurations",
|
|
7
7
|
"author": "Patrick Kollitsch <patrick@davids-neighbour.com> (https://davids-neighbour.com)",
|
|
8
8
|
"bugs": "https://github.com/davidsneighbour/configurations/issues",
|
|
9
9
|
"homepage": "https://github.com/davidsneighbour/configurations/tree/main/packages/stylelint-config",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@davidsneighbour/browserslist-config": "^5.
|
|
12
|
-
"postcss": "
|
|
11
|
+
"@davidsneighbour/browserslist-config": "^5.6.0",
|
|
12
|
+
"postcss": "8.4.32",
|
|
13
13
|
"postcss-cli": "11.0.0",
|
|
14
|
-
"postcss-scss": "
|
|
15
|
-
"stylelint": "
|
|
16
|
-
"stylelint-config-standard-scss": "
|
|
14
|
+
"postcss-scss": "4.0.9",
|
|
15
|
+
"stylelint": "16.1.0",
|
|
16
|
+
"stylelint-config-standard-scss": "12.0.0",
|
|
17
17
|
"stylelint-no-unsupported-browser-features": "7.0.0",
|
|
18
18
|
"stylelint-order": "6.0.4",
|
|
19
|
-
"stylelint-scss": "
|
|
20
|
-
"stylelint-use-nesting": "
|
|
19
|
+
"stylelint-scss": "6.0.0",
|
|
20
|
+
"stylelint-use-nesting": "4.1.0"
|
|
21
21
|
},
|
|
22
22
|
"scripts": {
|
|
23
23
|
"fixpack": "fixpack",
|
|
@@ -28,5 +28,5 @@
|
|
|
28
28
|
"node": ">=20.9.0",
|
|
29
29
|
"npm": ">=10.1.0"
|
|
30
30
|
},
|
|
31
|
-
"gitHead": "
|
|
31
|
+
"gitHead": "4df9fd35af6c06fb4081457af3b89499e4a6a46e"
|
|
32
32
|
}
|