forked from mapbox/mapbox-gl-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.stylelintrc
More file actions
22 lines (22 loc) · 689 Bytes
/
Copy path.stylelintrc
File metadata and controls
22 lines (22 loc) · 689 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"extends": "stylelint-config-standard",
"rules": {
"indentation": 4,
"declaration-block-semicolon-newline-after": "always-multi-line",
"block-opening-brace-space-before": "always-multi-line",
"declaration-block-single-line-max-declarations": 3,
"selector-class-pattern": "mapboxgl-[a-z-]+",
"at-rule-no-unknown": [true, {
"ignoreAtRules": ["svg-load"]
}],
"function-no-unknown": [true, {
"ignoreFunctions": ["svg-load", "svg-inline"]
}],
"selector-no-vendor-prefix": [true, {
"ignoreSelectors": [":-webkit-full-screen"]
}],
"property-no-vendor-prefix": [true, {
"ignoreProperties": ["user-select"]
}]
}
}