-
Notifications
You must be signed in to change notification settings - Fork 45
/
.stylelintrc.json
65 lines (59 loc) · 1.47 KB
/
.stylelintrc.json
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"extends": "stylelint-config-standard",
"rules": {
"comment-empty-line-before": null,
"declaration-block-no-redundant-longhand-properties": null,
"declaration-block-single-line-max-declarations": null,
"no-descending-specificity": [true, { "severity": "warning" }],
"no-duplicate-selectors": [true, { "severity": "warning" }],
"property-no-unknown": [true, {
"ignoreProperties": [
"binding",
"hyphenate"
]
}],
"rule-empty-line-before": null,
"selector-attribute-quotes": null,
"selector-class-pattern": "(^([a-z][a-z0-9]*)(-[a-z0-9]+)*$|^fb2_info$)",
"selector-type-case": ["lower", {
"ignoreTypes": ["DocFragment", "rubyBox"]
}],
"selector-type-no-unknown": [true, {
"ignoreTypes": [
"noframes",
"rbc",
"DocFragment",
"rubyBox",
"empty-line",
"author",
"date",
"description",
"genre",
"epigraph",
"v",
"stanza",
"poem",
"text-author",
"epigraph",
"book-title",
"subtitle",
"title-info",
"keywords",
"lang",
"src-lang",
"translator",
"document-info",
"publish-info",
"custom-info",
"coverpage",
"underline",
"spacing",
"emphasis",
"underline",
"strikethrough",
"spacing"
]
}],
"shorthand-property-no-redundant-values": null
}
}