@readme/stylelint-config 6.0.6 → 6.0.8

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
@@ -3,6 +3,26 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [6.0.8](https://github.com/readmeio/standards/compare/@readme/stylelint-config@6.0.7...@readme/stylelint-config@6.0.8) (2024-02-16)
7
+
8
+ **Note:** Version bump only for package @readme/stylelint-config
9
+
10
+
11
+
12
+
13
+
14
+ ## [6.0.7](https://github.com/readmeio/standards/compare/@readme/stylelint-config@6.0.6...@readme/stylelint-config@6.0.7) (2024-01-01)
15
+
16
+
17
+ ### Reverts
18
+
19
+ * Revert "chore(deps): bump stylelint-config-sass-guidelines from 10.0.0 to 11.0.0 (#793)" (#803) ([dcc4ae5](https://github.com/readmeio/standards/commit/dcc4ae528767ef88230b8628bb725e91a95b6450)), closes [#793](https://github.com/readmeio/standards/issues/793) [#803](https://github.com/readmeio/standards/issues/803)
20
+ * Revert "chore(deps): bump stylelint-config-standard-scss from 11.1.0 to 12.0.0 (#797)" (#802) ([04a6872](https://github.com/readmeio/standards/commit/04a6872652a4f969aa1a3a924c11eceb8cc45e29)), closes [#797](https://github.com/readmeio/standards/issues/797) [#802](https://github.com/readmeio/standards/issues/802)
21
+
22
+
23
+
24
+
25
+
6
26
  ## [6.0.6](https://github.com/readmeio/standards/compare/@readme/stylelint-config@6.0.5...@readme/stylelint-config@6.0.6) (2023-11-01)
7
27
 
8
28
  **Note:** Version bump only for package @readme/stylelint-config
@@ -110,7 +110,7 @@ $twoCamelCase: 'two';
110
110
  }
111
111
  }
112
112
 
113
- // Prefer \\"simple\\" selector-not-notation
113
+ // Prefer "simple" selector-not-notation
114
114
  .selector-not-notation {
115
115
  &:not(.one):not(.two):not(.three) {
116
116
  display: block;
@@ -42,7 +42,7 @@ describe('stylelint-config', () => {
42
42
  });
43
43
 
44
44
  it('matches the auto-fixed snapshot', () => {
45
- expect(data.output).toMatchSnapshot();
45
+ expect(data.code).toMatchSnapshot();
46
46
  });
47
47
 
48
48
  it('has errors', () => {
@@ -81,7 +81,7 @@ describe('stylelint-config', () => {
81
81
  });
82
82
 
83
83
  it('auto-fixes "selector-not-notation" to "simple" pattern', () => {
84
- expect(data.output).toContain('&:not(.one):not(.two):not(.three)');
84
+ expect(data.code).toContain('&:not(.one):not(.two):not(.three)');
85
85
  });
86
86
  });
87
87
 
@@ -95,7 +95,7 @@ $prettier: "should be single quotes";
95
95
  fix: true,
96
96
  });
97
97
  ({ warnings } = data.results[0]);
98
- expect(data.output).toMatchSnapshot();
98
+ expect(data.code).toMatchSnapshot();
99
99
  });
100
100
 
101
101
  it('flags double quotes as an error', async () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@readme/stylelint-config",
3
- "version": "6.0.6",
3
+ "version": "6.0.8",
4
4
  "description": "ReadMe coding standards for styles",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -21,21 +21,21 @@
21
21
  },
22
22
  "homepage": "https://github.com/readmeio/standards",
23
23
  "dependencies": {
24
- "stylelint": "^15.10.3",
24
+ "stylelint": "^16.2.1",
25
25
  "stylelint-config-css-modules": "^4.3.0",
26
- "stylelint-config-sass-guidelines": "^10.0.0",
27
- "stylelint-config-standard": "^34.0.0",
28
- "stylelint-config-standard-scss": "^11.0.0",
26
+ "stylelint-config-sass-guidelines": "^11.0.0",
27
+ "stylelint-config-standard": "^36.0.0",
28
+ "stylelint-config-standard-scss": "^13.0.0",
29
29
  "stylelint-order": "^6.0.3",
30
- "stylelint-prettier": "^4.0.2"
30
+ "stylelint-prettier": "^5.0.0"
31
31
  },
32
32
  "peerDependencies": {
33
33
  "postcss": "^8.4.12"
34
34
  },
35
35
  "devDependencies": {
36
- "@readme/eslint-config": "^13.4.0",
37
- "vitest": "^0.34.1"
36
+ "@readme/eslint-config": "^13.5.0",
37
+ "vitest": "^1.1.1"
38
38
  },
39
39
  "prettier": "@readme/eslint-config/prettier",
40
- "gitHead": "1a8e2769decb9fc52bab1f0daad822efe4935aa7"
40
+ "gitHead": "90fc3d495f84370d35dd0e3263e2e7e28ac19937"
41
41
  }