Skip to content

Commit f88c436

Browse files
committed
Unpinned Stylelint and plugins
1 parent 3b12816 commit f88c436

23 files changed

+678
-1093
lines changed

Diff for: .stylelintrc

+14-15
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
{
22
"extends": [
3+
"@stylistic/stylelint-config",
34
"stylelint-config-recess-order",
45
"stylelint-config-recommended",
5-
"stylelint-config-standard-scss",
6-
"stylelint-stylistic/config"
6+
"stylelint-config-standard-scss"
77
],
88
"plugins": [
9+
"@stylistic/stylelint-plugin",
910
"stylelint-scss"
1011
],
1112
"rules": {
@@ -46,7 +47,6 @@
4647
],
4748
"custom-property-empty-line-before": null,
4849
"custom-property-pattern": null,
49-
"declaration-colon-space-after": null,
5050
"declaration-no-important": true,
5151
"declaration-block-single-line-max-declarations": 0,
5252
"font-family-name-quotes": "always-where-recommended",
@@ -78,8 +78,6 @@
7878
}
7979
],
8080
"selector-class-pattern": null,
81-
"selector-combinator-space-before": null,
82-
"selector-descendant-combinator-no-non-space": null,
8381
"selector-id-pattern": null,
8482
"selector-max-id": 0,
8583
"selector-no-qualifying-type": null,
@@ -106,7 +104,6 @@
106104
]
107105
}
108106
],
109-
"value-list-comma-newline-after": null,
110107
"value-no-vendor-prefix": [
111108
true,
112109
{
@@ -121,7 +118,6 @@
121118
"scss/at-function-pattern": "^[a-z][a-z0-9]*(-[a-z0-9]+)*$",
122119
"scss/at-if-closing-brace-newline-after": "always-last-in-chain",
123120
"scss/at-if-no-null": true,
124-
"scss/at-import-partial-extension": "never",
125121
"scss/at-mixin-argumentless-call-parentheses": "always",
126122
"scss/at-mixin-parentheses-space-before": "never",
127123
"scss/at-mixin-pattern": "^[a-z][a-z0-9]*(-[a-z0-9]+)*$",
@@ -139,14 +135,15 @@
139135
"scss/double-slash-comment-empty-line-before": null,
140136
"scss/double-slash-comment-whitespace-inside": "always",
141137
"scss/at-extend-no-missing-placeholder": null,
138+
"scss/load-partial-extension": "never",
142139
"scss/no-duplicate-mixins": true,
143140
"scss/no-global-function-names": null,
144141
"scss/operator-no-newline-after": null,
145142
"scss/operator-no-unspaced": true,
146143
"scss/partial-no-import": true,
147144
"scss/percent-placeholder-pattern": "^[a-z][a-z0-9]*(-[a-z0-9]+)*$",
148145
"scss/selector-no-redundant-nesting-selector": true,
149-
"stylistic/block-closing-brace-newline-after": [
146+
"@stylistic/block-closing-brace-newline-after": [
150147
"always",
151148
{
152149
"ignoreAtRules": [
@@ -156,12 +153,14 @@
156153
]
157154
}
158155
],
159-
"stylistic/declaration-colon-space-after": null,
160-
"stylistic/no-empty-first-line": true,
161-
"stylistic/linebreaks": "unix",
162-
"stylistic/selector-max-empty-lines": 0,
163-
"stylistic/string-quotes": "double",
164-
"stylistic/unicode-bom": "never",
165-
"stylistic/value-list-comma-newline-after": null
156+
"@stylistic/declaration-colon-space-after": null,
157+
"@stylistic/no-empty-first-line": true,
158+
"@stylistic/linebreaks": "unix",
159+
"@stylistic/selector-combinator-space-before": null,
160+
"@stylistic/selector-descendant-combinator-no-non-space": null,
161+
"@stylistic/selector-max-empty-lines": 0,
162+
"@stylistic/string-quotes": "double",
163+
"@stylistic/unicode-bom": "never",
164+
"@stylistic/value-list-comma-newline-after": null
166165
}
167166
}

0 commit comments

Comments
 (0)