@primer/stylelint-config 12.2.0-rc.ff0d3ed → 12.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/CHANGELOG.md CHANGED
@@ -10,6 +10,10 @@
10
10
 
11
11
  - [#170](https://github.com/primer/stylelint-config/pull/170) [`b56fcd1`](https://github.com/primer/stylelint-config/commit/b56fcd1bce90d2e3e1621ef7af7545c52c935579) Thanks [@jonrohan](https://github.com/jonrohan)! - Adding config from the [stylelint-scss recommended config](https://github.com/stylelint-scss/stylelint-config-recommended-scss/blob/82d51c399ddaa2f9d282e419399dd2028f47830c/index.js).
12
12
 
13
+ ### Patch Changes
14
+
15
+ - [#181](https://github.com/primer/stylelint-config/pull/181) [`23e438a`](https://github.com/primer/stylelint-config/commit/23e438a7a9062550baa696cafbb186dc78b723f5) Thanks [@jonrohan](https://github.com/jonrohan)! - Truning off scss/dollar-variable-default
16
+
13
17
  ## 12.1.1
14
18
 
15
19
  ### Patch Changes
package/README.md CHANGED
@@ -16,7 +16,8 @@ Within your [stylelint config object](http://stylelint.io/user-guide/configurati
16
16
 
17
17
  ```json
18
18
  {
19
- "extends": "@primer/stylelint-config"
19
+ "extends": ["@primer/stylelint-config"],
20
+ "rules": { }
20
21
  }
21
22
  ```
22
23
 
package/index.js CHANGED
@@ -69,7 +69,6 @@ module.exports = {
69
69
  'scss/at-extend-no-missing-placeholder': true,
70
70
  'scss/at-rule-no-unknown': true,
71
71
  'scss/declaration-nested-properties-no-divided-groups': true,
72
- 'scss/dollar-variable-default': [true, {ignore: 'local'}],
73
72
  'scss/dollar-variable-no-missing-interpolation': true,
74
73
  'scss/function-quote-no-quoted-strings-inside': true,
75
74
  'scss/function-unquote-no-unquoted-strings-inside': true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@primer/stylelint-config",
3
- "version": "12.2.0-rc.ff0d3ed",
3
+ "version": "12.2.0",
4
4
  "description": "Sharable stylelint config used by GitHub's CSS",
5
5
  "homepage": "http://primer.style/css/tools/linting",
6
6
  "author": "GitHub, Inc.",
@@ -49,13 +49,13 @@
49
49
  "@primer/css": "^19.0.0",
50
50
  "@primer/primitives": "^7.0.1",
51
51
  "dedent": "0.7.0",
52
- "eslint": "8.3.0",
52
+ "eslint": "8.4.0",
53
53
  "eslint-plugin-github": "4.3.5",
54
- "eslint-plugin-jest": "25.2.4",
54
+ "eslint-plugin-jest": "25.3.0",
55
55
  "eslint-plugin-prettier": "4.0.0",
56
- "jest": "27.3.1",
56
+ "jest": "27.4.3",
57
57
  "jest-preset-stylelint": "4.2.0",
58
- "prettier": "2.4.1",
58
+ "prettier": "2.5.1",
59
59
  "stylelint": "14.1.0"
60
60
  },
61
61
  "jest": {