@alexlit/config-stylelint 45.1.2 → 45.2.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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/index.js +2 -2
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -9,7 +9,7 @@ npm i @alexlit/config-stylelint -D
9
9
  ## Connection
10
10
 
11
11
  - Default
12
- ([see plugins enabled by default](https://github.com/alex-lit/lint-kit/blob/master/packages/config-stylelint/index.js#L62))
12
+ ([see plugins enabled by default](https://github.com/alex-lit/lint-kit/blob/master/packages/config-stylelint/index.js))
13
13
 
14
14
  ```js
15
15
  // stylelint.config.js
package/index.js CHANGED
@@ -52,7 +52,7 @@ const OPTIONAL_PLUGINS = {
52
52
  'no-indistinguishable-colors': false,
53
53
  };
54
54
 
55
- const PRETTIER_PLUGINS = {
55
+ const CODESTYLE_PLUGINS = {
56
56
  /** @see [stylelint-prettier](https://github.com/prettier/stylelint-prettier) */
57
57
  prettier: true,
58
58
  };
@@ -60,7 +60,7 @@ const PRETTIER_PLUGINS = {
60
60
  const PLUGINS = {
61
61
  ...ADDITIONAL_PLUGINS,
62
62
  ...OPTIONAL_PLUGINS,
63
- ...PRETTIER_PLUGINS,
63
+ ...CODESTYLE_PLUGINS,
64
64
  };
65
65
 
66
66
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alexlit/config-stylelint",
3
- "version": "45.1.2",
3
+ "version": "45.2.0",
4
4
  "private": false,
5
5
  "description": "Stylelint config",
6
6
  "keywords": [
@@ -37,7 +37,7 @@
37
37
  "postcss": "^8.4.38",
38
38
  "postcss-html": "^1.6.0",
39
39
  "prettier": "^3.2.5",
40
- "stylelint": "^16.2.1",
40
+ "stylelint": "^16.3.0",
41
41
  "stylelint-at-rule-no-children": "^0.3.1",
42
42
  "stylelint-color-format": "^1.1.0",
43
43
  "stylelint-config-recommended-vue": "^1.5.0",