papercss/.stylelintrc.json

14 lines
332 B
JSON
Raw Permalink Normal View History

2018-01-03 23:43:11 +01:00
{
2018-01-04 00:13:37 +01:00
"extends": "stylelint-config-sass-guidelines",
2018-01-03 23:43:11 +01:00
"plugins": [
"stylelint-scss"
2018-01-04 00:13:37 +01:00
],
"rules": {
"max-nesting-depth": 5,
2018-05-24 14:13:53 +02:00
"selector-no-qualifying-type": null,
"selector-max-compound-selectors": null,
"scss/selector-no-redundant-nesting-selector": null,
"scss/at-extend-no-missing-placeholder": null
2018-01-04 00:13:37 +01:00
}
2018-01-03 23:43:11 +01:00
}