1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-10-31 21:18:54 +00:00
trezor-wallet/.stylelintrc

31 lines
811 B
Plaintext
Raw Normal View History

2018-08-10 13:33:23 +00:00
{
"processors": [
"stylelint-processor-styled-components"
],
"extends": [
2018-08-14 11:43:45 +00:00
"stylelint-config-recommended",
2018-08-10 13:33:23 +00:00
"stylelint-config-styled-components"
],
2018-08-14 11:43:45 +00:00
"rules": {
2018-08-14 11:55:25 +00:00
"indentation": 4,
2018-08-30 18:10:36 +00:00
"declaration-empty-line-before": null,
"custom-property-empty-line-before": null,
"max-empty-lines": 1,
"block-no-empty": null,
"property-no-unknown": [
true, {
"ignoreProperties": ["composes", "font-smoothing", "font-smooth"]
}
],
"at-rule-empty-line-before": [
"always", {
"ignoreAtRules": [
"import"
]
}
],
"at-rule-no-unknown": [ true, {
ignoreAtRules: ["each"]
}]
2018-08-14 11:43:45 +00:00
}
2018-08-10 13:33:23 +00:00
}