@xip-online-applications/stylelint-config 0.7.0 → 0.8.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 +19 -0
- package/index.js +2 -2
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
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
|
+
# [0.8.0](https://github.com/xip-online-applications/configs/compare/@xip-online-applications/stylelint-config@0.7.1...@xip-online-applications/stylelint-config@0.8.0) (2023-10-09)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- downgrade Prettier to v2.8.2 because of @nx/linter ([6f24d4a](https://github.com/xip-online-applications/configs/commit/6f24d4a0a2f0cb6ba84c7f961ff7fe34ae1aacfd))
|
|
11
|
+
- fix Prettier code style ([eea96bc](https://github.com/xip-online-applications/configs/commit/eea96bca13aa050b432a5399702db5a50b290673))
|
|
12
|
+
|
|
13
|
+
- chore!: update to Prettier 3.0 ([7bd21ea](https://github.com/xip-online-applications/configs/commit/7bd21ea544dc66f5b169d13d47b62130120b71ce))
|
|
14
|
+
|
|
15
|
+
### BREAKING CHANGES
|
|
16
|
+
|
|
17
|
+
- updated to Prettier 3.0 that will have a larger impact.
|
|
18
|
+
|
|
19
|
+
## [0.7.1](https://github.com/xip-online-applications/configs/compare/@xip-online-applications/stylelint-config@0.7.0...@xip-online-applications/stylelint-config@0.7.1) (2023-07-04)
|
|
20
|
+
|
|
21
|
+
### Bug Fixes
|
|
22
|
+
|
|
23
|
+
- remove deprecated "single-quotes" configuration ([2e5c785](https://github.com/xip-online-applications/configs/commit/2e5c785dd49525850380ba86963f9155857d2a6c))
|
|
24
|
+
|
|
6
25
|
# [0.7.0](https://github.com/xip-online-applications/configs/compare/@xip-online-applications/stylelint-config@0.6.0...@xip-online-applications/stylelint-config@0.7.0) (2023-07-04)
|
|
7
26
|
|
|
8
27
|
### Features
|
package/index.js
CHANGED
|
@@ -8,7 +8,7 @@ module.exports = {
|
|
|
8
8
|
'stylelint-prettier', // https://github.com/prettier/stylelint-prettier
|
|
9
9
|
],
|
|
10
10
|
rules: {
|
|
11
|
-
'order/properties-alphabetical-order': true,
|
|
11
|
+
'order/properties-alphabetical-order': true, // https://github.com/hudochenkov/stylelint-order/blob/master/rules/properties-alphabetical-order/README.md
|
|
12
12
|
|
|
13
13
|
/**
|
|
14
14
|
* Other
|
|
@@ -19,11 +19,11 @@ module.exports = {
|
|
|
19
19
|
'shorthand-property-no-redundant-values': true, // https://stylelint.io/user-guide/rules/shorthand-property-no-redundant-values/
|
|
20
20
|
'no-empty-source': null, // https://stylelint.io/user-guide/rules/no-empty-source/
|
|
21
21
|
'import-notation': null, // https://stylelint.io/user-guide/rules/import-notation/
|
|
22
|
+
'declaration-property-value-no-unknown': true, // https://stylelint.io/user-guide/rules/declaration-property-value-no-unknown
|
|
22
23
|
|
|
23
24
|
/**
|
|
24
25
|
* Quotes
|
|
25
26
|
*/
|
|
26
|
-
'string-quotes': 'single', // https://stylelint.io/user-guide/rules/string-quotes/
|
|
27
27
|
'font-family-name-quotes': 'always-where-recommended', // https://stylelint.io/user-guide/rules/font-family-name-quotes/
|
|
28
28
|
'function-url-quotes': 'always', // https://stylelint.io/user-guide/rules/function-url-quotes/
|
|
29
29
|
'selector-attribute-quotes': 'always', // https://stylelint.io/user-guide/rules/selector-attribute-quotes/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xip-online-applications/stylelint-config",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -20,13 +20,13 @@
|
|
|
20
20
|
"LICENSE"
|
|
21
21
|
],
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"stylelint-config-standard-scss": "^
|
|
23
|
+
"stylelint-config-standard-scss": "^11.0.0",
|
|
24
24
|
"stylelint-declaration-block-no-ignored-properties": "^2.7.0",
|
|
25
25
|
"stylelint-order": "^6.0.3",
|
|
26
26
|
"stylelint-prettier": "^3.0.0"
|
|
27
27
|
},
|
|
28
28
|
"peerDependencies": {
|
|
29
|
-
"stylelint": "^15.
|
|
29
|
+
"stylelint": "^15.10.3"
|
|
30
30
|
},
|
|
31
|
-
"gitHead": "
|
|
31
|
+
"gitHead": "2511836b8ab346caf226569c13ffcbeed5ef960d"
|
|
32
32
|
}
|