This commit is contained in:
TheGiddyLimit
2024-03-10 21:53:34 +00:00
parent b323d4123e
commit f00d1f3833
272 changed files with 24017 additions and 9350 deletions

View File

@@ -1,28 +1,25 @@
{
"extends": "stylelint-config-sass-guidelines",
"extends": [
"stylelint-config-standard-scss"
],
"rules": {
"indentation": "tab",
"order/properties-order": [
"position",
"z-index",
"top",
"right",
"bottom",
"left",
"margin",
"margin-top",
"margin-right",
"margin-bottom",
"margin-left",
"padding",
"padding-top",
"padding-right",
"padding-bottom",
"padding-left"
],
"order/properties-alphabetical-order": null,
"color-named": "always-where-possible",
"string-quotes": "double",
"at-rule-empty-line-before": null,
"comment-empty-line-before": null,
"custom-property-empty-line-before": null,
"declaration-empty-line-before": null,
"rule-empty-line-before": null,
"scss/dollar-variable-empty-line-before": null,
"scss/double-slash-comment-empty-line-before": null,
"no-duplicate-selectors": null,
"no-descending-specificity": null,
"custom-property-pattern": "^([a-z][a-z0-9]*)(-+[a-z0-9]+)*$",
"keyframes-name-pattern": null,
"selector-id-pattern": null,
"color-named": "never",
"selector-no-qualifying-type": null,
"selector-max-compound-selectors": null,
"selector-max-id": null,
@@ -35,6 +32,7 @@
{
"except": ["empty"]
}
]
],
"scss/at-mixin-parentheses-space-before": "always"
}
}