2020-08-29 23:35:27 +09:00
|
|
|
{
|
|
|
|
"plugins": [
|
|
|
|
"stylelint-prettier"
|
|
|
|
],
|
|
|
|
|
|
|
|
"rules": {
|
2023-02-11 22:41:32 +09:00
|
|
|
"prettier/prettier": true,
|
|
|
|
|
2020-08-29 23:35:27 +09:00
|
|
|
"block-no-empty": true,
|
2023-03-25 18:04:29 +09:00
|
|
|
"declaration-block-no-redundant-longhand-properties": true,
|
2023-04-09 19:38:49 +09:00
|
|
|
"declaration-property-value-disallowed-list": {
|
|
|
|
"float": ["inline-start", "inline-end"]
|
|
|
|
},
|
2021-01-10 22:02:38 +09:00
|
|
|
"length-zero-no-unit": [true, {
|
|
|
|
ignore: ["custom-properties"]
|
|
|
|
}],
|
2023-04-18 22:46:51 +09:00
|
|
|
"selector-pseudo-element-colon-notation": "double",
|
2021-01-22 22:36:02 +09:00
|
|
|
"shorthand-property-no-redundant-values": true,
|
2020-08-29 23:35:27 +09:00
|
|
|
},
|
|
|
|
}
|