Files
ThreadNet-Web/.stylelintrc.js
T

26 lines
809 B
JavaScript
Raw Normal View History

2019-04-09 14:20:17 +01:00
module.exports = {
"extends": "stylelint-config-standard",
2019-07-09 18:35:57 +01:00
"plugins": [
"stylelint-scss",
],
2019-04-09 14:20:17 +01:00
"rules": {
2021-04-02 09:03:28 +02:00
"color-hex-case": null,
2019-04-09 14:20:17 +01:00
"indentation": 4,
2019-04-09 14:30:51 +01:00
"comment-empty-line-before": null,
"declaration-empty-line-before": null,
"length-zero-no-unit": null,
"rule-empty-line-before": null,
"color-hex-length": null,
"max-empty-lines": null,
"number-no-trailing-zeros": null,
"number-leading-zero": null,
"selector-list-comma-newline-after": null,
2019-07-09 18:35:57 +01:00
"at-rule-no-unknown": null,
"no-descending-specificity": null,
2019-08-13 15:40:03 +01:00
"scss/at-rule-no-unknown": [true, {
// https://github.com/vector-im/element-web/issues/10544
2019-08-13 15:40:03 +01:00
"ignoreAtRules": ["define-mixin"],
}],
2019-04-09 14:20:17 +01:00
}
}