@xip-online-applications/stylelint-config 0.4.6 → 0.5.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 CHANGED
@@ -3,6 +3,16 @@
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.5.0](https://github.com/xip-online-applications/configs/compare/@xip-online-applications/stylelint-config@0.4.7...@xip-online-applications/stylelint-config@0.5.0) (2023-03-20)
7
+
8
+ ### Features
9
+
10
+ - disable import notation rule ([995b839](https://github.com/xip-online-applications/configs/commit/995b839e8a1c190244749690ca107c2f449c9ff8))
11
+
12
+ ## [0.4.7](https://github.com/xip-online-applications/configs/compare/@xip-online-applications/stylelint-config@0.4.6...@xip-online-applications/stylelint-config@0.4.7) (2023-02-10)
13
+
14
+ **Note:** Version bump only for package @xip-online-applications/stylelint-config
15
+
6
16
  ## [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
17
 
8
18
  ### Bug Fixes
package/README.md CHANGED
@@ -5,12 +5,12 @@
5
5
  ### Install
6
6
 
7
7
  ```sh
8
- $ npm i -D @xip-online-applications/stylelint-config
8
+ npm i -D stylelint @xip-online-applications/stylelint-config
9
9
  ```
10
10
 
11
11
  ### Add config
12
12
 
13
- Add the config to your `package.json`. Alternatively you can make a seperate config file.
13
+ Add the config to your `package.json`. Alternatively you can make a separate config file.
14
14
 
15
15
  ```jsonc
16
16
  {
package/index.js CHANGED
@@ -18,6 +18,7 @@ module.exports = {
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
20
  'no-empty-source': null, // https://stylelint.io/user-guide/rules/no-empty-source/
21
+ 'import-notation': null, // https://stylelint.io/user-guide/rules/import-notation/
21
22
 
22
23
  /**
23
24
  * Quotes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xip-online-applications/stylelint-config",
3
- "version": "0.4.6",
3
+ "version": "0.5.0",
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": "a13dbf5f7bbe8fa17fd20b9dc4e89e976022de46"
37
+ "gitHead": "c3b754c712fce26244137f353058d943816b1705"
38
38
  }