forked from Sage-Bionetworks/Agora
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc
35 lines (35 loc) · 811 Bytes
/
.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
{
"extends": [
"stylelint-config-standard-scss",
"stylelint-config-prettier-scss"
],
"plugins": ["stylelint-no-unsupported-browser-features"],
"rules": {
"plugin/no-unsupported-browser-features": [
true,
{
"browsers": [
"> 1%",
"Last 2 versions",
"not ie > 0",
"not ie_mob > 0",
"not op_mini all",
"not op_mob > 0",
"not bb > 0"
],
"ignore": [
"css-unset-value",
"css3-cursors",
"text-decoration",
"css-sticky",
"css-filters",
"css-appearance"
],
"severity": "warning"
}
],
"no-descending-specificity": null,
"no-empty-source": null,
"scss/dollar-variable-empty-line-before": null
}
}