2016-06-23 16:12:15 +03:00
|
|
|
{
|
2017-07-05 20:14:24 +03:00
|
|
|
"extends": [
|
2021-11-23 17:26:52 +03:00
|
|
|
"stylelint-config-standard-scss"
|
2017-07-05 20:14:24 +03:00
|
|
|
],
|
2016-06-23 16:12:15 +03:00
|
|
|
"rules": {
|
2021-11-23 17:26:52 +03:00
|
|
|
"at-rule-empty-line-before": [
|
|
|
|
"always",
|
|
|
|
{
|
|
|
|
"ignore": [
|
|
|
|
"after-comment",
|
|
|
|
"blockless-after-same-name-blockless",
|
|
|
|
"inside-block",
|
|
|
|
],
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"at-rule-no-unknown": [
|
|
|
|
true,
|
|
|
|
{
|
|
|
|
"ignoreAtRules": [
|
|
|
|
"content",
|
|
|
|
"each",
|
|
|
|
"else",
|
|
|
|
"for",
|
|
|
|
"function",
|
|
|
|
"if",
|
|
|
|
"include",
|
|
|
|
"mixin",
|
|
|
|
"return",
|
|
|
|
"warn",
|
|
|
|
],
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"block-closing-brace-newline-after": [
|
|
|
|
"always",
|
|
|
|
{
|
|
|
|
"ignoreAtRules": [
|
|
|
|
"if",
|
|
|
|
"else"
|
|
|
|
],
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"color-function-notation": null,
|
2018-07-11 11:12:03 +03:00
|
|
|
"declaration-colon-newline-after": null,
|
2021-11-23 17:26:52 +03:00
|
|
|
"function-disallowed-list": [
|
|
|
|
"random"
|
|
|
|
],
|
|
|
|
"function-url-quotes": [
|
|
|
|
"always"
|
|
|
|
],
|
2018-07-11 11:12:03 +03:00
|
|
|
"indentation": null,
|
2021-11-23 17:26:52 +03:00
|
|
|
"max-nesting-depth": [
|
|
|
|
3,
|
|
|
|
{
|
|
|
|
"ignore": [
|
|
|
|
"blockless-at-rules"
|
|
|
|
],
|
|
|
|
}
|
|
|
|
],
|
2018-03-31 20:48:32 +03:00
|
|
|
"no-descending-specificity": null,
|
2021-11-23 17:26:52 +03:00
|
|
|
"rule-empty-line-before": [
|
|
|
|
"always",
|
|
|
|
{
|
|
|
|
"except": [
|
|
|
|
"first-nested"
|
|
|
|
],
|
|
|
|
"ignore": [
|
|
|
|
"after-comment"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"scss/dollar-variable-pattern": null,
|
|
|
|
"scss/no-global-function-names": null,
|
|
|
|
"selector-class-pattern": "^([a-zA-Z][a-zA-Z0-9]*)([-[a-zA-Z0-9]+|--[a-zA-Z0-9]+])*$",
|
|
|
|
"selector-id-pattern": "^([a-zA-Z][a-zA-Z0-9]*)(-[a-zA-Z0-9]+)*$",
|
2018-07-11 11:12:03 +03:00
|
|
|
"string-quotes": null,
|
2020-02-21 19:24:58 +03:00
|
|
|
"value-keyword-case": null,
|
2018-07-11 11:12:03 +03:00
|
|
|
"value-list-comma-newline-after": null,
|
2022-09-23 21:14:58 +03:00
|
|
|
"selector-not-notation": "simple"
|
2016-06-23 16:12:15 +03:00
|
|
|
}
|
2021-11-23 17:26:52 +03:00
|
|
|
}
|