mirror of
https://github.com/danog/telegram-tt.git
synced 2024-11-26 20:34:44 +01:00
28 lines
788 B
JSON
28 lines
788 B
JSON
{
|
|
"extends": [
|
|
"stylelint-config-recommended-scss"
|
|
],
|
|
"plugins": [
|
|
"stylelint-declaration-block-no-ignored-properties",
|
|
"stylelint-high-performance-animation",
|
|
"stylelint-group-selectors",
|
|
"./plugins/wholePixel.js"
|
|
],
|
|
"rules": {
|
|
"number-leading-zero": "always",
|
|
"selector-attribute-quotes": "always",
|
|
"scss/operator-no-unspaced": null,
|
|
"no-descending-specificity": null,
|
|
"plugin/declaration-block-no-ignored-properties": true,
|
|
"plugin/no-low-performance-animation-properties": [
|
|
true,
|
|
{
|
|
"severity": "warning",
|
|
"ignore": "paint-properties"
|
|
}
|
|
],
|
|
"plugin/stylelint-group-selectors": [true, { "severity": "warning" }],
|
|
"plugin/whole-pixel": [true, { "ignoreList": ["letter-spacing"] }]
|
|
}
|
|
}
|