@foray1010/stylelint-config 9.0.0 → 10.0.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 +15 -0
- package/index.cjs +2 -1
- package/package.json +7 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,21 @@
|
|
|
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
|
+
## [10.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/stylelint-config@9.0.0...@foray1010/stylelint-config@10.0.0) (2023-02-25)
|
|
7
|
+
|
|
8
|
+
### ⚠ BREAKING CHANGES
|
|
9
|
+
|
|
10
|
+
- **deps:** update stylelint to v15
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
- remove dependency on stylelint-config-prettier ([c7d26bb](https://github.com/foray1010/common-presets/commit/c7d26bb66055fb2104132f1fdada46e5c6ce069c))
|
|
15
|
+
- **stylelint-config:** disable comment-empty-line-before ([20fbd76](https://github.com/foray1010/common-presets/commit/20fbd76dbff20275e6e5cfeca9a5c8323e6fb18f))
|
|
16
|
+
|
|
17
|
+
### Miscellaneous Chores
|
|
18
|
+
|
|
19
|
+
- **deps:** update stylelint to v15 ([5553334](https://github.com/foray1010/common-presets/commit/5553334c344e3ebbb6959de9ff14b8b4bad4a6e3))
|
|
20
|
+
|
|
6
21
|
## [9.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/stylelint-config@8.0.0...@foray1010/stylelint-config@9.0.0) (2022-11-07)
|
|
7
22
|
|
|
8
23
|
### ⚠ BREAKING CHANGES
|
package/index.cjs
CHANGED
|
@@ -6,11 +6,12 @@ module.exports = {
|
|
|
6
6
|
'stylelint-config-standard',
|
|
7
7
|
'stylelint-config-css-modules',
|
|
8
8
|
'stylelint-config-idiomatic-order',
|
|
9
|
-
// it requires `stylelint-config-prettier`
|
|
10
9
|
'stylelint-prettier/recommended.js',
|
|
11
10
|
],
|
|
12
11
|
plugins: ['stylelint-no-unsupported-browser-features'],
|
|
13
12
|
rules: {
|
|
13
|
+
// unnecessary and may cause unexpected results when used with stylelint-order
|
|
14
|
+
'comment-empty-line-before': null,
|
|
14
15
|
// false alarms when use with `:root` selector
|
|
15
16
|
'no-descending-specificity': null,
|
|
16
17
|
// if used with styled-component, not every js files have styles
|
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
|
+
"version": "10.0.0",
|
|
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": {
|
|
@@ -20,16 +20,15 @@
|
|
|
20
20
|
"type:check": "tsc"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"stylelint-config-css-modules": "^4.
|
|
23
|
+
"stylelint-config-css-modules": "^4.2.0",
|
|
24
24
|
"stylelint-config-idiomatic-order": "^9.0.0",
|
|
25
|
-
"stylelint-config-
|
|
26
|
-
"stylelint-
|
|
27
|
-
"stylelint-
|
|
28
|
-
"stylelint-prettier": "^2.0.0"
|
|
25
|
+
"stylelint-config-standard": "^30.0.1",
|
|
26
|
+
"stylelint-no-unsupported-browser-features": "^6.1.0",
|
|
27
|
+
"stylelint-prettier": "^3.0.0"
|
|
29
28
|
},
|
|
30
29
|
"peerDependencies": {
|
|
31
30
|
"prettier": "^2.0.0",
|
|
32
|
-
"stylelint": "^
|
|
31
|
+
"stylelint": "^15.0.0"
|
|
33
32
|
},
|
|
34
33
|
"engines": {
|
|
35
34
|
"node": "^14.18.0 || ^16.13.0 || >=18.12.0"
|
|
@@ -37,5 +36,5 @@
|
|
|
37
36
|
"publishConfig": {
|
|
38
37
|
"access": "public"
|
|
39
38
|
},
|
|
40
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "11a76b57489f7de8f08ec5cd47f8747c4c432f09"
|
|
41
40
|
}
|