@xip-online-applications/stylelint-config 0.7.0 → 0.7.1

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,12 @@
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.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)
7
+
8
+ ### Bug Fixes
9
+
10
+ - remove deprecated "single-quotes" configuration ([2e5c785](https://github.com/xip-online-applications/configs/commit/2e5c785dd49525850380ba86963f9155857d2a6c))
11
+
6
12
  # [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
13
 
8
14
  ### 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.7.0",
3
+ "version": "0.7.1",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -28,5 +28,5 @@
28
28
  "peerDependencies": {
29
29
  "stylelint": "^15.6.0"
30
30
  },
31
- "gitHead": "559f44d410b8c5e1d6b96c74df73e1351e07fc2a"
31
+ "gitHead": "2bf9225a79667c064965c541557dfc87450cee7c"
32
32
  }