@foray1010/stylelint-config 4.0.0 → 5.0.2

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 (3) hide show
  1. package/CHANGELOG.md +36 -0
  2. package/index.js +4 -0
  3. package/package.json +9 -8
package/CHANGELOG.md CHANGED
@@ -3,6 +3,42 @@
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
+ ### [5.0.2](https://github.com/foray1010/common-presets/compare/@foray1010/stylelint-config@5.0.1...@foray1010/stylelint-config@5.0.2) (2022-01-09)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **deps:** update dependency stylelint-config-standard to v24 ([5592d8d](https://github.com/foray1010/common-presets/commit/5592d8d84bc4071103ea576060dbc4e1ffa18ebc))
11
+
12
+ ### [5.0.1](https://github.com/foray1010/common-presets/compare/@foray1010/stylelint-config@5.0.0...@foray1010/stylelint-config@5.0.1) (2021-11-10)
13
+
14
+ ### Bug Fixes
15
+
16
+ - do not enforce case for id and class ([83d7ebc](https://github.com/foray1010/common-presets/commit/83d7ebc3abfd0b9443c2a52cf320d7f306e77bd4))
17
+
18
+ ## [5.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/stylelint-config@4.0.1...@foray1010/stylelint-config@5.0.0) (2021-11-10)
19
+
20
+ ### ⚠ BREAKING CHANGES
21
+
22
+ - **deps:** require stylelint >=14 <15
23
+ - only support node ^12.22.0 || ^14.17.0 || >=16.13.0
24
+
25
+ ### Bug Fixes
26
+
27
+ - **deps:** update dependency stylelint-config-prettier to v9 ([b2beb16](https://github.com/foray1010/common-presets/commit/b2beb16dd361bb234dc5be143ea0900a8617964f))
28
+ - **deps:** update dependency stylelint-config-standard to v23 ([7dc379b](https://github.com/foray1010/common-presets/commit/7dc379bde264e7d0d9ccf42ee031c6a79d262e37))
29
+ - **deps:** update dependency stylelint-prettier to v2 ([e17b4d2](https://github.com/foray1010/common-presets/commit/e17b4d2e5aa14f7fbcb73bd44edbfd75f4ea623a))
30
+
31
+ ### Miscellaneous Chores
32
+
33
+ - bump node version requirement ([6906953](https://github.com/foray1010/common-presets/commit/6906953ac0b781376d5c8a17d27faef6a457278a))
34
+ - **deps:** update dependency stylelint to v14 ([#346](https://github.com/foray1010/common-presets/issues/346)) ([cdd7a24](https://github.com/foray1010/common-presets/commit/cdd7a24d0411427ab4a0a3e6aec267f2fae79667))
35
+
36
+ ### [4.0.1](https://github.com/foray1010/common-presets/compare/@foray1010/stylelint-config@4.0.0...@foray1010/stylelint-config@4.0.1) (2021-08-25)
37
+
38
+ ### Bug Fixes
39
+
40
+ - **deps:** update dependency stylelint-no-unsupported-browser-features to v5 ([81fc5ee](https://github.com/foray1010/common-presets/commit/81fc5ee2657d0e7ee9ad05a49c46386e3cc5e383))
41
+
6
42
  ## [4.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/stylelint-config@3.0.0...@foray1010/stylelint-config@4.0.0) (2021-04-29)
7
43
 
8
44
  ### ⚠ BREAKING CHANGES
package/index.js CHANGED
@@ -17,6 +17,10 @@ module.exports = {
17
17
  'no-descending-specificity': null,
18
18
  // if used with styled-component, not every js files have styles
19
19
  'no-empty-source': null,
20
+ // do not enforce case for class as camel case is more convenient to use in react
21
+ 'selector-class-pattern': null,
22
+ // do not enforce case for id
23
+ 'selector-id-pattern': null,
20
24
  'plugin/no-unsupported-browser-features': [
21
25
  true,
22
26
  {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package",
3
3
  "name": "@foray1010/stylelint-config",
4
- "version": "4.0.0",
4
+ "version": "5.0.2",
5
5
  "homepage": "https://github.com/foray1010/common-presets/tree/master/packages/stylelint-config#readme",
6
6
  "bugs": "https://github.com/foray1010/common-presets/issues",
7
7
  "repository": {
@@ -13,26 +13,27 @@
13
13
  "exports": "./index.js",
14
14
  "files": [
15
15
  "**/*.{cjs,js,json,mjs}",
16
+ "*.md",
16
17
  "stylelintignore"
17
18
  ],
18
19
  "dependencies": {
19
20
  "stylelint-config-css-modules": "^2.2.0",
20
21
  "stylelint-config-idiomatic-order": "^8.1.0",
21
- "stylelint-config-prettier": "^8.0.2",
22
- "stylelint-config-standard": "^22.0.0",
22
+ "stylelint-config-prettier": "^9.0.0",
23
+ "stylelint-config-standard": "^24.0.0",
23
24
  "stylelint-no-indistinguishable-colors": "^1.3.0",
24
- "stylelint-no-unsupported-browser-features": "^4.1.4",
25
- "stylelint-prettier": "^1.2.0"
25
+ "stylelint-no-unsupported-browser-features": "^5.0.0",
26
+ "stylelint-prettier": "^2.0.0"
26
27
  },
27
28
  "peerDependencies": {
28
29
  "prettier": ">=2 <3",
29
- "stylelint": ">=13.13.0 <14"
30
+ "stylelint": ">=14 <15"
30
31
  },
31
32
  "engines": {
32
- "node": ">=12.13"
33
+ "node": "^12.22.0 || ^14.17.0 || >=16.13.0"
33
34
  },
34
35
  "publishConfig": {
35
36
  "access": "public"
36
37
  },
37
- "gitHead": "fb70357d157e2521b6754a18ae95e240695b9f94"
38
+ "gitHead": "caaca02524ad9574dcddf9ef851051599e999703"
38
39
  }