Replacing csslint by stylelint

This commit is contained in:
Lucas Cimon
2017-12-05 09:04:20 +01:00
parent eb2af57867
commit b2ff34154d
5 changed files with 84 additions and 63 deletions

13
.stylelintrc Normal file
View File

@@ -0,0 +1,13 @@
{
"extends": "stylelint-config-standard",
"rules": {
"at-rule-empty-line-before": null,
"block-closing-brace-newline-before": null,
"color-hex-case": null,
"max-empty-lines": 2,
"no-descending-specificity": null,
"indentation": null,
"rule-empty-line-before": null,
"selector-list-comma-newline-after": null
}
}