@xip-online-applications/stylelint-config 0.6.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/index.js +3 -2
  3. package/package.json +2 -3
package/CHANGELOG.md CHANGED
@@ -3,6 +3,18 @@
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
+
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)
13
+
14
+ ### Features
15
+
16
+ - ditch idiomatic order config and use packaged alphabetical order config ([e87f631](https://github.com/xip-online-applications/configs/commit/e87f6313f6f95a0beb82e907aae9feda0186516c))
17
+
6
18
  # [0.6.0](https://github.com/xip-online-applications/configs/compare/@xip-online-applications/stylelint-config@0.5.9...@xip-online-applications/stylelint-config@0.6.0) (2023-07-04)
7
19
 
8
20
  - feat!: make separate Stylelint config for SCSS ([53e6f28](https://github.com/xip-online-applications/configs/commit/53e6f28a5ef4299f05c0b0976d0de5961d89ce3f))
package/index.js CHANGED
@@ -1,6 +1,5 @@
1
1
  module.exports = {
2
2
  extends: [
3
- 'stylelint-config-idiomatic-order', // https://github.com/ream88/stylelint-config-idiomatic-order
4
3
  'stylelint-prettier/recommended', // https://github.com/prettier/stylelint-prettier
5
4
  ],
6
5
  plugins: [
@@ -9,6 +8,8 @@ module.exports = {
9
8
  'stylelint-prettier', // https://github.com/prettier/stylelint-prettier
10
9
  ],
11
10
  rules: {
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
  * Other
14
15
  */
@@ -18,11 +19,11 @@ module.exports = {
18
19
  'shorthand-property-no-redundant-values': true, // https://stylelint.io/user-guide/rules/shorthand-property-no-redundant-values/
19
20
  'no-empty-source': null, // https://stylelint.io/user-guide/rules/no-empty-source/
20
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
21
23
 
22
24
  /**
23
25
  * Quotes
24
26
  */
25
- 'string-quotes': 'single', // https://stylelint.io/user-guide/rules/string-quotes/
26
27
  'font-family-name-quotes': 'always-where-recommended', // https://stylelint.io/user-guide/rules/font-family-name-quotes/
27
28
  'function-url-quotes': 'always', // https://stylelint.io/user-guide/rules/function-url-quotes/
28
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.6.0",
3
+ "version": "0.7.1",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -20,7 +20,6 @@
20
20
  "LICENSE"
21
21
  ],
22
22
  "dependencies": {
23
- "stylelint-config-idiomatic-order": "^9.0.0",
24
23
  "stylelint-config-standard-scss": "^8.0.0",
25
24
  "stylelint-declaration-block-no-ignored-properties": "^2.7.0",
26
25
  "stylelint-order": "^6.0.3",
@@ -29,5 +28,5 @@
29
28
  "peerDependencies": {
30
29
  "stylelint": "^15.6.0"
31
30
  },
32
- "gitHead": "943915ccfc723ae1d1d7b55d1aa3406f37dd5c47"
31
+ "gitHead": "2bf9225a79667c064965c541557dfc87450cee7c"
33
32
  }