@readme/stylelint-config 2.0.0 → 3.1.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 +6 -0
- package/package.json +5 -5
package/index.js
CHANGED
|
@@ -54,6 +54,12 @@ module.exports = {
|
|
|
54
54
|
// Eventually, it may be beneficial to turn this on.
|
|
55
55
|
'selector-no-qualifying-type': null,
|
|
56
56
|
|
|
57
|
+
// Complex selectors are a level 4 spec that is not yet fully supported by
|
|
58
|
+
// all browsers, e.g. `:not(one, two, three)`. Until then, prefer the simple
|
|
59
|
+
// pattern that we use today, e.g. `:not(one):not(two):not(three)`.
|
|
60
|
+
// https://stylelint.io/user-guide/rules/list/selector-not-notation/
|
|
61
|
+
'selector-not-notation': 'simple',
|
|
62
|
+
|
|
57
63
|
// TODO: Remove this when migrating to Dart Sass.
|
|
58
64
|
// Disallows the use of global function names, as these global functions are
|
|
59
65
|
// now located inside built-in Dart Sass modules.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@readme/stylelint-config",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.1.0",
|
|
4
4
|
"description": "ReadMe coding standards for styles",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"files": [
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"stylelint-config-css-modules": "^4.1.0",
|
|
25
25
|
"stylelint-config-prettier": "^9.0.3",
|
|
26
26
|
"stylelint-config-sass-guidelines": "^9.0.1",
|
|
27
|
-
"stylelint-config-standard": "^
|
|
27
|
+
"stylelint-config-standard": "^28.0.0",
|
|
28
28
|
"stylelint-config-standard-scss": "^5.0.0",
|
|
29
29
|
"stylelint-prettier": "^2.0.0"
|
|
30
30
|
},
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
"stylelint": "^14.6.1"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@readme/eslint-config": "^
|
|
37
|
-
"jest": "^
|
|
36
|
+
"@readme/eslint-config": "^10.1.0",
|
|
37
|
+
"jest": "^29.0.1"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "5375b46b01c824d9b58d718a6e2718c132d8fc63"
|
|
40
40
|
}
|