forked from ITCase-django/django-tinymce-4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc
34 lines (34 loc) · 805 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
28
29
30
31
32
33
34
{
"extends": "stylelint-config-standard",
"rules": {
"no-descending-specificity": null,
"shorthand-property-no-redundant-values": null,
"at-rule-empty-line-before": ["never", {
except: [
"blockless-after-same-name-blockless",
"blockless-after-blockless",
],
ignore: [
"after-comment",
"blockless-after-blockless"
]
}],
"function-url-quotes": "always",
"max-nesting-depth": 10,
"string-quotes": "single",
"indentation": null,
"block-no-empty": null,
"comment-empty-line-before": "never",
"rule-empty-line-before": [
"always", {
except: [
"first-nested",
"inside-block-and-after-rule"
],
ignore: [
"inside-block"
]
}
]
}
}