forked from nationalarchives/ds-wagtail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc
27 lines (27 loc) · 856 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
26
27
{
"extends": ["stylelint-config-standard-scss"],
"plugins": ["stylelint-selector-bem-pattern"],
"ignoreFiles": [
"templates/static/css/**/*.css",
"templates/static/cookie-consent/**/*.css",
"sass/tna-toolkit/**/*.scss"
],
"rules": {
"at-rule-empty-line-before": null,
"block-no-empty": null,
"declaration-empty-line-before": null,
"property-no-vendor-prefix": null,
"value-no-vendor-prefix": null,
"value-keyword-case": null,
"scss/dollar-variable-empty-line-before": null,
"scss/double-slash-comment-empty-line-before": null,
"selector-class-pattern": null,
"media-feature-range-notation": null,
"plugin/selector-bem-pattern": {
"preset": "bem"
},
"scss/at-extend-no-missing-placeholder": null,
"scss/dollar-variable-pattern": null,
"selector-id-pattern": null
}
}