@enigmatry/stylelint-config 17.2.1-preview.1 → 17.2.1-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 +14 -5
- package/package.json +4 -5
package/index.js
CHANGED
|
@@ -43,6 +43,7 @@ module.exports = {
|
|
|
43
43
|
"@stylistic/function-comma-space-after": "always-single-line",
|
|
44
44
|
"@stylistic/function-comma-space-before": "never",
|
|
45
45
|
"@stylistic/function-max-empty-lines": 0,
|
|
46
|
+
"@stylistic/named-grid-areas-alignment": "always",
|
|
46
47
|
"@stylistic/function-parentheses-newline-inside": "never-multi-line",
|
|
47
48
|
"@stylistic/function-parentheses-space-inside": "never",
|
|
48
49
|
"@stylistic/function-whitespace-after": "always",
|
|
@@ -118,11 +119,12 @@ module.exports = {
|
|
|
118
119
|
"declaration-block-no-duplicate-custom-properties": true,
|
|
119
120
|
"declaration-block-no-duplicate-properties": true,
|
|
120
121
|
"declaration-block-no-shorthand-property-overrides": true,
|
|
121
|
-
"declaration-block-no-redundant-longhand-properties":
|
|
122
|
+
"declaration-block-no-redundant-longhand-properties": [
|
|
123
|
+
true, { "ignoreShorthands": [] }
|
|
124
|
+
],
|
|
122
125
|
"declaration-block-single-line-max-declarations": 1,
|
|
123
126
|
"declaration-no-important": true,
|
|
124
127
|
"declaration-property-max-values": {},
|
|
125
|
-
"declaration-property-value-no-unknown": null,
|
|
126
128
|
"font-family-name-quotes": "always-unless-keyword",
|
|
127
129
|
"font-family-no-duplicate-names": true,
|
|
128
130
|
"font-family-no-missing-generic-family-keyword": true,
|
|
@@ -146,11 +148,11 @@ module.exports = {
|
|
|
146
148
|
"no-descending-specificity": true,
|
|
147
149
|
"no-duplicate-at-import-rules": true,
|
|
148
150
|
"no-duplicate-selectors": true,
|
|
151
|
+
"no-unknown-custom-media": true,
|
|
149
152
|
"no-invalid-double-slash-comments": true,
|
|
150
153
|
"no-unknown-animations": true,
|
|
151
154
|
"no-unknown-custom-properties": null,
|
|
152
155
|
"number-max-precision": 2,
|
|
153
|
-
"property-no-unknown": true,
|
|
154
156
|
"property-no-vendor-prefix": true,
|
|
155
157
|
"rule-empty-line-before": [
|
|
156
158
|
"always",
|
|
@@ -161,7 +163,9 @@ module.exports = {
|
|
|
161
163
|
"selector-disallowed-list": null,
|
|
162
164
|
"selector-max-attribute": 0,
|
|
163
165
|
"selector-max-combinators": 2,
|
|
164
|
-
"selector-max-compound-selectors": 3,
|
|
166
|
+
"selector-max-compound-selectors": [3,
|
|
167
|
+
{ ignoreSelectors: ["::ng-deep"] }
|
|
168
|
+
],
|
|
165
169
|
"selector-max-id": 0,
|
|
166
170
|
"selector-max-pseudo-class": 1,
|
|
167
171
|
"selector-max-type": 2,
|
|
@@ -188,6 +192,7 @@ module.exports = {
|
|
|
188
192
|
"scss/at-else-empty-line-before": "never",
|
|
189
193
|
"scss/at-else-if-parentheses-space-before": "never",
|
|
190
194
|
"scss/at-extend-no-missing-placeholder": true,
|
|
195
|
+
"scss/at-mixin-no-risky-nesting-selector": true,
|
|
191
196
|
"scss/at-function-parentheses-space-before": "never",
|
|
192
197
|
"scss/at-function-named-arguments": [
|
|
193
198
|
"never",
|
|
@@ -196,7 +201,6 @@ module.exports = {
|
|
|
196
201
|
"scss/at-if-closing-brace-newline-after": null,
|
|
197
202
|
"scss/at-if-closing-brace-space-after": null,
|
|
198
203
|
"scss/at-if-no-null": true,
|
|
199
|
-
"scss/at-import-partial-extension": "never",
|
|
200
204
|
"scss/at-mixin-argumentless-call-parentheses": "always",
|
|
201
205
|
"scss/at-mixin-parentheses-space-before": "never",
|
|
202
206
|
"scss/at-root-no-redundant": true,
|
|
@@ -224,6 +228,11 @@ module.exports = {
|
|
|
224
228
|
"scss/partial-no-import": true,
|
|
225
229
|
"scss/selector-no-redundant-nesting-selector": true,
|
|
226
230
|
"scss/selector-no-union-class-name": true,
|
|
231
|
+
"scss/at-import-partial-extension-allowed-list": ["scss"],
|
|
232
|
+
"scss/at-import-partial-extension-disallowed-list": ["sass"],
|
|
233
|
+
"scss/load-partial-extension": "never",
|
|
234
|
+
"scss/declaration-property-value-no-unknown": null,
|
|
235
|
+
"scss/property-no-unknown": true,
|
|
227
236
|
"scss/no-duplicate-dollar-variables": [
|
|
228
237
|
true,
|
|
229
238
|
{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@enigmatry/stylelint-config",
|
|
3
|
-
"version": "17.2.1-preview.
|
|
3
|
+
"version": "17.2.1-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",
|
|
@@ -15,18 +15,17 @@
|
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"postcss-scss": "^4.0.9",
|
|
17
17
|
"stylelint-config-property-sort-order-smacss": "^10.0.0",
|
|
18
|
-
"@stylistic/stylelint-plugin": "^
|
|
18
|
+
"@stylistic/stylelint-plugin": "^3.1.0",
|
|
19
19
|
"stylelint-use-nesting": "^5.1.1",
|
|
20
20
|
"stylelint-declaration-block-no-ignored-properties": "^2.8.0",
|
|
21
21
|
"stylelint-file-max-lines": "^1.0.0",
|
|
22
|
-
"stylelint-scss": "^6.
|
|
22
|
+
"stylelint-scss": "^6.7.0",
|
|
23
23
|
"stylelint-group-selectors": "^1.0.10"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {
|
|
26
|
-
"stylelint": "^16.
|
|
26
|
+
"stylelint": "^16.9.0"
|
|
27
27
|
},
|
|
28
28
|
"deprecatedDependencies": {
|
|
29
|
-
"stylelint-use-nesting": "4.1.0 is out of support. Add it back to the list if support for Stylelint v16+ is added",
|
|
30
29
|
"stylelint-selector-no-empty": "1.0.9 is out of support. Add it back to the list if support for Stylelint v16+ is added"
|
|
31
30
|
},
|
|
32
31
|
"publishConfig": {
|