forked from canonical/juju.is
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc
25 lines (23 loc) · 900 Bytes
/
.stylelintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"extends": ["stylelint-config-recommended-scss", "stylelint-prettier/recommended"],
"plugins": ["stylelint-order"],
"rules": {
"no-invalid-position-at-import-rule": null,
"scss/at-extend-no-missing-placeholder": null,
"scss/comment-no-empty": null,
"scss/no-global-function-names": null,
"scss/operator-no-unspaced": null,
"function-url-scheme-allowed-list": ["data"],
"at-rule-no-unknown": null,
"scss/at-rule-no-unknown": true,
"scss/at-import-no-partial-leading-underscore": true,
"scss/at-import-partial-extension": "never",
"order/properties-alphabetical-order": true,
"no-descending-specificity": [true, {"severity": "warning"}],
"property-no-vendor-prefix": true,
"value-no-vendor-prefix": true,
"selector-no-vendor-prefix": true,
"media-feature-name-no-vendor-prefix": true,
"at-rule-no-vendor-prefix": true
}
}