2019-03-07 20:44:56 +00:00
|
|
|
{
|
|
|
|
"extends": "stylelint-config-recommended",
|
|
|
|
"plugins": [
|
|
|
|
"stylelint-scss"
|
|
|
|
],
|
|
|
|
"rules": {
|
2019-03-30 13:00:53 +00:00
|
|
|
"at-rule-no-unknown": [
|
|
|
|
true,
|
|
|
|
{
|
|
|
|
"ignoreAtRules": [
|
|
|
|
"include",
|
|
|
|
"mixin"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
2019-03-07 20:44:56 +00:00
|
|
|
"indentation": 2,
|
|
|
|
"string-quotes": "single",
|
|
|
|
"no-descending-specificity": null
|
|
|
|
}
|
|
|
|
}
|