soapbox/.stylelintrc.json

17 wiersze
812 B
JSON
Czysty Zwykły widok Historia

2020-10-11 20:12:56 +00:00
{
"extends": ["stylelint-config-standard"],
"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,
"no-invalid-position-at-import-rule": null,
"scss/at-rule-no-unknown": [true, { "ignoreAtRules": ["tailwind", "apply", "layer", "config"]}],
"selector-class-pattern": null
2020-10-11 20:12:56 +00:00
}
}