soapbox/.stylelintrc.json

22 wiersze
997 B
JSON
Czysty Zwykły widok Historia

2020-10-11 20:12:56 +00:00
{
"extends": ["stylelint-config-standard-scss"],
2020-10-11 20:12:56 +00:00
"rules": {
2023-01-05 20:53:14 +00:00
"alpha-value-notation": null,
"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"] }],
2023-01-05 20:53:14 +00:00
"color-function-notation": null,
"custom-property-pattern": null,
"declaration-block-no-redundant-longhand-properties": null,
"declaration-colon-newline-after": null,
"declaration-empty-line-before": "never",
2023-01-09 21:04:28 +00:00
"font-family-no-missing-generic-family-keyword": [true, { "ignoreFontFamilies": ["ForkAwesome", "Font Awesome 5 Free"] }],
2023-01-05 20:53:14 +00:00
"max-line-length": null,
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"]}],
2023-01-05 20:53:14 +00:00
"scss/operator-no-unspaced": null,
2023-09-16 12:17:00 +00:00
"selector-class-pattern": null
2020-10-11 20:12:56 +00:00
}
}