forked from cloudera/hue
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.stylelintrc
64 lines (64 loc) · 2.02 KB
/
.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
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
{
"overrides": [
{
"files": ["**/*.scss"],
"extends": "stylelint-config-standard-scss",
"customSyntax": "postcss-scss",
"plugins": [
"stylelint-scss"
],
"rules": {
"scss/at-else-empty-line-before": null,
"scss/at-extend-no-missing-placeholder": null,
"scss/at-if-closing-brace-newline-after": null,
"scss/at-if-closing-brace-space-after": null,
"scss/at-import-partial-extension": null,
"scss/at-mixin-argumentless-call-parentheses": null,
"scss/at-mixin-pattern": null,
"scss/comment-no-empty": null,
"scss/dollar-variable-colon-space-after": null,
"scss/dollar-variable-empty-line-before": null,
"scss/double-slash-comment-empty-line-before": null,
"scss/double-slash-comment-whitespace-inside": null,
"selector-pseudo-element-no-unknown": [
true,
{
"ignorePseudoElements": ["v-deep"]
}
]
}
},
{
"files": ["**/*.less"],
"extends": "stylelint-config-standard",
"customSyntax": "postcss-less",
"rules": {
"at-rule-no-unknown": null,
"declaration-block-no-redundant-longhand-properties": null,
"function-url-quotes": null,
"media-feature-name-no-vendor-prefix": null,
"number-leading-zero": null,
"selector-attribute-quotes": null,
"selector-id-pattern": null
}
}
],
"rules": {
"alpha-value-notation": null,
"at-rule-empty-line-before": null,
"at-rule-no-vendor-prefix": null,
"color-function-notation": null,
"font-family-name-quotes": null,
"keyframes-name-pattern": null,
"max-empty-lines": null,
"max-line-length": null,
"no-descending-specificity": null,
"number-max-precision": null,
"property-no-vendor-prefix": null,
"selector-class-pattern": null,
"shorthand-property-no-redundant-values": null,
"string-quotes": null,
"value-keyword-case": null,
"value-no-vendor-prefix": null
}
}