1
0
Fork 0
mirror of https://github.com/GuerillaStudio/vanillalist.git synced 2024-10-22 09:27:30 +00:00
vanillalist/.stylelintrc.json

26 lines
775 B
JSON
Raw Permalink Normal View History

2022-01-03 13:14:31 +00:00
{
"extends": [
2022-02-10 04:53:33 +00:00
"stylelint-config-standard-scss",
"@stanzilla/stylelint-config-rational-order"
2022-01-03 13:14:31 +00:00
],
"overrides": [
{
"files": [
"src/sass/**/*.scss"
],
"customSyntax": "postcss-scss",
"rules": {
"at-rule-no-unknown": null,
"scss/at-rule-no-unknown": true,
"selector-class-pattern": null,
"value-list-max-empty-lines": 1,
"scss/comment-no-loud": true,
"max-line-length": null,
"no-descending-specificity": null,
"number-leading-zero": "never",
"declaration-block-no-redundant-longhand-properties": null
}
}
]
}