forked from whyboris/Video-Hub-App
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.stylelintrc
More file actions
34 lines (34 loc) · 769 Bytes
/
Copy path.stylelintrc
File metadata and controls
34 lines (34 loc) · 769 Bytes
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-recommended-scss",
"plugins": [
"stylelint-order",
"stylelint-scss"
],
"rules": {
"block-closing-brace-newline-before": "always",
"block-opening-brace-newline-after": "always",
"comment-empty-line-before": [
"always",
{
"except": [
"first-nested"
]
}
],
"font-family-no-missing-generic-family-keyword": null,
"indentation": 2,
"no-descending-specificity": null,
"no-empty-source": null,
"order/properties-alphabetical-order": true,
"rule-empty-line-before": [
"always",
{
"except": [
"after-single-line-comment",
"first-nested"
]
}
],
"selector-type-no-unknown": null
}
}