@readme/stylelint-config 3.0.1 → 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.
Files changed (2) hide show
  1. package/index.js +6 -0
  2. package/package.json +2 -2
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.0.1",
3
+ "version": "3.1.0",
4
4
  "description": "ReadMe coding standards for styles",
5
5
  "main": "index.js",
6
6
  "files": [
@@ -36,5 +36,5 @@
36
36
  "@readme/eslint-config": "^10.1.0",
37
37
  "jest": "^29.0.1"
38
38
  },
39
- "gitHead": "f06cf1a81df61b49e7017ebfd81c1cdaf61317a0"
39
+ "gitHead": "5375b46b01c824d9b58d718a6e2718c132d8fc63"
40
40
  }