@enigmatry/stylelint-config 17.0.0-preview.2 → 17.0.0-preview.5
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/index.js +5 -5
- package/package.json +10 -17
package/index.js
CHANGED
|
@@ -4,13 +4,13 @@ module.exports = {
|
|
|
4
4
|
ignoreAtRules: ["else"],
|
|
5
5
|
extends: "stylelint-config-property-sort-order-smacss",
|
|
6
6
|
plugins: [
|
|
7
|
-
"stylelint-scss",
|
|
8
7
|
"@stylistic/stylelint-plugin",
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
"stylelint-group-selectors",
|
|
8
|
+
"stylelint-use-nesting",
|
|
9
|
+
"stylelint-declaration-block-no-ignored-properties",
|
|
12
10
|
"stylelint-file-max-lines",
|
|
13
|
-
"stylelint-
|
|
11
|
+
"stylelint-scss",
|
|
12
|
+
"stylelint-group-selectors",
|
|
13
|
+
// "stylelint-selector-no-empty", => uncomment this line once this library is again compatible with stylelint v16+
|
|
14
14
|
],
|
|
15
15
|
rules: {
|
|
16
16
|
"@stylistic/at-rule-name-case": "lower",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@enigmatry/stylelint-config",
|
|
3
|
-
"version": "17.0.0-preview.
|
|
3
|
+
"version": "17.0.0-preview.5",
|
|
4
4
|
"author": "Enigmatry",
|
|
5
5
|
"description": "Stylelint shareable config for the Enigmatry style.",
|
|
6
6
|
"homepage": "https://github.com/enigmatry/entry-angular-building-blocks/tree/master/libs/stylelint-config#readme",
|
|
@@ -13,24 +13,17 @@
|
|
|
13
13
|
"index.js"
|
|
14
14
|
],
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"@stylistic/stylelint-plugin": "2.1.
|
|
19
|
-
"stylelint-
|
|
20
|
-
"stylelint-declaration-block-no-ignored-properties": "2.8.0",
|
|
21
|
-
"stylelint-file-max-lines": "1.0.0",
|
|
22
|
-
"stylelint-scss": "6.1.0",
|
|
23
|
-
"stylelint-group-selectors": "1.0.10"
|
|
16
|
+
"postcss-scss": "^4.0.9",
|
|
17
|
+
"stylelint-config-property-sort-order-smacss": "^10.0.0",
|
|
18
|
+
"@stylistic/stylelint-plugin": "^2.1.2",
|
|
19
|
+
"stylelint-use-nesting": "^5.1.1",
|
|
20
|
+
"stylelint-declaration-block-no-ignored-properties": "^2.8.0",
|
|
21
|
+
"stylelint-file-max-lines": "^1.0.0",
|
|
22
|
+
"stylelint-scss": "^6.1.0",
|
|
23
|
+
"stylelint-group-selectors": "^1.0.10"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {
|
|
26
|
-
"stylelint": "16.
|
|
27
|
-
"postcss-scss": "4.0.9",
|
|
28
|
-
"@stylistic/stylelint-plugin": "2.0.0",
|
|
29
|
-
"stylelint-config-property-sort-order-smacss": "10.0.0",
|
|
30
|
-
"stylelint-declaration-block-no-ignored-properties": "2.8.0",
|
|
31
|
-
"stylelint-file-max-lines": "1.0.0",
|
|
32
|
-
"stylelint-scss": "6.1.0",
|
|
33
|
-
"stylelint-group-selectors": "1.0.10"
|
|
26
|
+
"stylelint": "^16.5.0"
|
|
34
27
|
},
|
|
35
28
|
"deprecatedDependencies": {
|
|
36
29
|
"stylelint-use-nesting": "4.1.0 is out of support. Add it back to the list if support for Stylelint v16+ is added",
|