2019-04-08 19:35:53 +03:00
|
|
|
{
|
|
|
|
"extends": [
|
2022-11-10 20:51:08 +03:00
|
|
|
"stylelint-config-standard-scss",
|
|
|
|
"stylelint-config-prettier-scss",
|
2019-04-08 19:35:53 +03:00
|
|
|
],
|
|
|
|
"rules": {
|
|
|
|
"at-rule-empty-line-before": ["always", {
|
|
|
|
"ignore": [
|
|
|
|
"after-comment",
|
|
|
|
"blockless-after-same-name-blockless",
|
|
|
|
"inside-block",
|
|
|
|
],
|
|
|
|
}],
|
|
|
|
"at-rule-no-unknown": [true, {
|
|
|
|
"ignoreAtRules": [
|
|
|
|
"content",
|
|
|
|
"else",
|
|
|
|
"for",
|
|
|
|
"function",
|
|
|
|
"if",
|
|
|
|
"include",
|
|
|
|
"mixin",
|
|
|
|
"return",
|
|
|
|
"warn",
|
|
|
|
],
|
|
|
|
}],
|
|
|
|
"block-closing-brace-newline-after": ["always", {
|
|
|
|
"ignoreAtRules": ["if", "else"],
|
|
|
|
}],
|
2022-02-03 01:09:45 +03:00
|
|
|
"color-function-notation": null,
|
2019-04-08 19:35:53 +03:00
|
|
|
"declaration-colon-newline-after": null,
|
|
|
|
"function-url-quotes": ["always"],
|
2020-10-05 19:56:27 +03:00
|
|
|
"function-disallowed-list": ["random"],
|
2019-04-08 19:35:53 +03:00
|
|
|
"indentation": null,
|
|
|
|
"max-nesting-depth": [5, {
|
|
|
|
"ignore": ["blockless-at-rules"],
|
|
|
|
}],
|
|
|
|
"no-descending-specificity": null,
|
|
|
|
"rule-empty-line-before": ["always", {
|
|
|
|
"except": [
|
|
|
|
"first-nested"
|
|
|
|
],
|
|
|
|
"ignore": [
|
|
|
|
"after-comment"
|
|
|
|
]
|
|
|
|
}],
|
|
|
|
"string-quotes": null,
|
2022-02-03 01:09:45 +03:00
|
|
|
"value-keyword-case": [
|
|
|
|
"lower",
|
|
|
|
{
|
|
|
|
"camelCaseSvgKeywords": true
|
|
|
|
}
|
|
|
|
],
|
2022-11-16 19:49:16 +03:00
|
|
|
"selector-not-notation": null,
|
2019-04-08 19:35:53 +03:00
|
|
|
"value-list-comma-newline-after": null,
|
2022-11-10 20:51:08 +03:00
|
|
|
"scss/no-global-function-names": null,
|
|
|
|
"scss/at-import-partial-extension": null,
|
|
|
|
"scss/comment-no-empty": null,
|
|
|
|
"scss/dollar-variable-pattern": null,
|
|
|
|
"scss/at-mixin-pattern": null,
|
2019-04-08 19:35:53 +03:00
|
|
|
}
|
|
|
|
}
|