@xip-online-applications/stylelint-config 0.4.4 → 0.4.6

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 +1 -0
  3. package/package.json +2 -2
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.4.6](https://github.com/xip-online-applications/configs/compare/@xip-online-applications/stylelint-config@0.4.5...@xip-online-applications/stylelint-config@0.4.6) (2023-02-06)
7
+
8
+ ### Bug Fixes
9
+
10
+ - fix typo in no-empty-source Stylelint rule ([8caf224](https://github.com/xip-online-applications/configs/commit/8caf2244f673d9d3b47456cb4a4ad0d2cf2f2e96))
11
+
12
+ ## [0.4.5](https://github.com/xip-online-applications/configs/compare/@xip-online-applications/stylelint-config@0.4.4...@xip-online-applications/stylelint-config@0.4.5) (2023-02-06)
13
+
14
+ ### Bug Fixes
15
+
16
+ - disable no-empty-space rule ([0d3f2f7](https://github.com/xip-online-applications/configs/commit/0d3f2f75bc5a07140d997c1d2b281ae579d93a07))
17
+
6
18
  ## [0.4.4](https://github.com/xip-online-applications/configs/compare/@xip-online-applications/stylelint-config@0.4.3...@xip-online-applications/stylelint-config@0.4.4) (2023-01-30)
7
19
 
8
20
  ### Bug Fixes
package/index.js CHANGED
@@ -17,6 +17,7 @@ module.exports = {
17
17
  'at-rule-no-unknown': null, // Disabled because of stylelint-scss // https://stylelint.io/user-guide/rules/at-rule-no-unknown/
18
18
  'font-weight-notation': 'named-where-possible', // https://stylelint.io/user-guide/rules/font-weight-notation/
19
19
  'shorthand-property-no-redundant-values': true, // https://stylelint.io/user-guide/rules/shorthand-property-no-redundant-values/
20
+ 'no-empty-source': null, // https://stylelint.io/user-guide/rules/no-empty-source/
20
21
 
21
22
  /**
22
23
  * Quotes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xip-online-applications/stylelint-config",
3
- "version": "0.4.4",
3
+ "version": "0.4.6",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -34,5 +34,5 @@
34
34
  "stylelint-order": "^6.0.1",
35
35
  "stylelint-prettier": "^2.0.0"
36
36
  },
37
- "gitHead": "11f920a1fad8d109cd805fe4dc290be863995da3"
37
+ "gitHead": "a13dbf5f7bbe8fa17fd20b9dc4e89e976022de46"
38
38
  }