soapbox/.stylelintrc.json

17 wiersze
803 B
JSON
Czysty Zwykły widok Historia

2020-10-11 20:12:56 +00:00
{
"extends": ["stylelint-config-standard"],
"ignoreFiles": ["app/styles/reset.scss"],
"plugins": ["stylelint-scss"],
2020-10-11 20:12:56 +00:00
"rules": {
"at-rule-no-unknown": null,
"at-rule-empty-line-before": ["always", { "ignore": ["after-comment", "first-nested", "inside-block", "blockless-after-same-name-blockless", "blockless-after-blockless"] }],
"declaration-colon-newline-after": null,
"declaration-empty-line-before": "never",
2021-09-27 21:45:34 +00:00
"font-family-no-missing-generic-family-keyword": [true, { "ignoreFontFamilies": ["ForkAwesome", "Font Awesome 5 Free", "OpenDyslexic", "soapbox"] }],
2020-10-11 20:12:56 +00:00
"no-descending-specificity": null,
"no-duplicate-selectors": null,
2022-03-24 00:18:37 +00:00
"scss/at-rule-no-unknown": [true, { "ignoreAtRules": ["/tailwind/", "layer"]}],
"no-invalid-position-at-import-rule": null
2020-10-11 20:12:56 +00:00
}
}