-
Notifications
You must be signed in to change notification settings - Fork 650
/
.stylelintrc
29 lines (29 loc) · 1.09 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
{
"extends": [
"stylelint-config-standard",
"stylelint-config-property-sort-order-smacss"
],
"ignoreFiles": [
"app/assets/stylesheets/old_common/**/*.css.scss",
"app/assets/stylesheets/table/table_panel/layer-views-panels/filters_panel.css.scss",
"app/assets/stylesheets/embed/embed_map.css.scss",
"app/assets/stylesheets/editor-3/codemirror.css.scss",
"app/assets/stylesheets/editor-3/_codemirror.scss",
"app/assets/stylesheets/editor-3/form-tags.css.scss"
],
"rules": {
"selector-pseudo-element-colon-notation": "double",
"color-hex-case": "upper",
"at-rule-no-unknown": [true, {
"ignoreAtRules": ["extend", "at-root", "debug", "warn", "error", "if", "else", "for", "each", "while", "mixin", "include", "content", "return", "function"
]}
],
"function-name-case": [ "lower", {
"ignoreFunctions": ["/^DXImageTransform.Microsoft.*$/"]
}],
"declaration-empty-line-before": null,
"block-no-empty": true,
"shorthand-property-no-redundant-values": true,
"declaration-block-no-redundant-longhand-properties": null
}
}