@foray1010/stylelint-config 6.0.0 → 7.0.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,11 +3,35 @@
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
+ ## [7.0.1](https://github.com/foray1010/common-presets/compare/@foray1010/stylelint-config@7.0.0...@foray1010/stylelint-config@7.0.1) (2022-08-24)
7
+
8
+ **Note:** Version bump only for package @foray1010/stylelint-config
9
+
10
+ ## [7.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/stylelint-config@6.0.1...@foray1010/stylelint-config@7.0.0) (2022-08-24)
11
+
12
+ ### ⚠ BREAKING CHANGES
13
+
14
+ - **stylelint-config:** drop stylelint 14.10
15
+ - **stylelint-config:** drop stylelint 14.9
16
+
17
+ Co-authored-by: Alex Young <foray1010@users.noreply.github.com>
18
+
19
+ ### Bug Fixes
20
+
21
+ - remove unused ignore patterns ([11d05bf](https://github.com/foray1010/common-presets/commit/11d05bf3e7cb001d1260f885089500e1ddf5fb02))
22
+ - **stylelint-config:** update dependency stylelint-config-standard to v27 ([#502](https://github.com/foray1010/common-presets/issues/502)) ([0eb5cc1](https://github.com/foray1010/common-presets/commit/0eb5cc12f84907d0ee0935f17ffe691f9bafbf9c))
23
+ - **stylelint-config:** update dependency stylelint-config-standard to v28 ([7ce3564](https://github.com/foray1010/common-presets/commit/7ce3564b766cc4c55d19ce8f63234564358ba9da))
24
+
25
+ ## [6.0.1](https://github.com/foray1010/common-presets/compare/@foray1010/stylelint-config@6.0.0...@foray1010/stylelint-config@6.0.1) (2022-06-13)
26
+
27
+ ### Bug Fixes
28
+
29
+ - should drop node 17 in version range ([0e911fd](https://github.com/foray1010/common-presets/commit/0e911fd737e472d699bfc32d866067ed6ccfa269))
30
+
6
31
  ## [6.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/stylelint-config@5.0.5...@foray1010/stylelint-config@6.0.0) (2022-06-13)
7
32
 
8
33
  ### ⚠ BREAKING CHANGES
9
34
 
10
- - drop support for typescript >=5
11
35
  - **deps:** drop stylelint <14.9.0
12
36
  - drop node 12 and 17
13
37
 
@@ -18,7 +42,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
18
42
  ### Miscellaneous Chores
19
43
 
20
44
  - drop node 12 and 17 ([c43351e](https://github.com/foray1010/common-presets/commit/c43351e0da92209fc3100d9cb1bc129af320fdac))
21
- - remove peerDependencies versions that are not sure if supported ([2175adb](https://github.com/foray1010/common-presets/commit/2175adb62efe7d1762f6f66ce9bb0e7adb5f82e5))
22
45
 
23
46
  ### [5.0.5](https://github.com/foray1010/common-presets/compare/@foray1010/stylelint-config@5.0.4...@foray1010/stylelint-config@5.0.5) (2022-04-05)
24
47
 
package/README.md CHANGED
@@ -18,13 +18,16 @@ Z for looser rules
18
18
 
19
19
  ## Installation
20
20
 
21
- 1. `yarn add -DE prettier stylelint @foray1010/stylelint-config`
21
+ 1. `yarn add -DE @foray1010/stylelint-config prettier stylelint`
22
22
 
23
- 1. Create an `.stylelintrc.yml` in the project root
23
+ 1. Create an `.stylelintrc.cjs` in the project root
24
24
 
25
- ```yml
26
- extends:
27
- - '@foray1010/stylelint-config'
25
+ ```js
26
+ 'use strict'
27
+
28
+ module.exports = {
29
+ extends: ['@foray1010/stylelint-config'],
30
+ }
28
31
  ```
29
32
 
30
33
  1. Use default stylelintignore via npm script
package/index.js CHANGED
@@ -1,5 +1,6 @@
1
1
  'use strict'
2
2
 
3
+ /** @type {import('stylelint').Config} */
3
4
  module.exports = {
4
5
  extends: [
5
6
  'stylelint-config-standard',
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package",
3
3
  "name": "@foray1010/stylelint-config",
4
- "version": "6.0.0",
4
+ "version": "7.0.1",
5
5
  "homepage": "https://github.com/foray1010/common-presets/tree/master/packages/stylelint-config#readme",
6
6
  "bugs": "https://github.com/foray1010/common-presets/issues",
7
7
  "repository": {
@@ -16,23 +16,29 @@
16
16
  "*.md",
17
17
  "stylelintignore"
18
18
  ],
19
+ "scripts": {
20
+ "type:check": "tsc"
21
+ },
19
22
  "dependencies": {
20
23
  "stylelint-config-css-modules": "^4.0.0",
21
24
  "stylelint-config-idiomatic-order": "^8.1.0",
22
25
  "stylelint-config-prettier": "^9.0.0",
23
- "stylelint-config-standard": "^26.0.0",
26
+ "stylelint-config-standard": "^28.0.0",
24
27
  "stylelint-no-unsupported-browser-features": "^5.0.0",
25
28
  "stylelint-prettier": "^2.0.0"
26
29
  },
30
+ "devDependencies": {
31
+ "typescript": "4.7.4"
32
+ },
27
33
  "peerDependencies": {
28
34
  "prettier": "^2.0.0",
29
- "stylelint": "^14.9.0"
35
+ "stylelint": "^14.11.0"
30
36
  },
31
37
  "engines": {
32
- "node": "^14.17.0 || >=16.13.0 || >=18.0.0"
38
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
33
39
  },
34
40
  "publishConfig": {
35
41
  "access": "public"
36
42
  },
37
- "gitHead": "6b2dbe64ac8e4677dfb6b72f70e185bcd607f17b"
43
+ "gitHead": "8f4681aea3421297bffa13e0bbbf7f6dba20ca70"
38
44
  }
package/stylelintignore CHANGED
@@ -2,4 +2,3 @@ build/
2
2
  coverage/
3
3
  dist/
4
4
  node_modules/
5
- out/
package/tsconfig.json ADDED
@@ -0,0 +1,8 @@
1
+ {
2
+ "$schema": "https://json.schemastore.org/tsconfig",
3
+ "extends": "@foray1010/tsconfig",
4
+ "compilerOptions": {
5
+ "allowJs": true,
6
+ "checkJs": true
7
+ }
8
+ }