extension-workshop/.stylelintrc

63 строки
1.5 KiB
Plaintext
Исходник Постоянная ссылка Обычный вид История

2019-04-08 19:35:53 +03:00
{
"extends": [
"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"],
}],
"color-function-notation": null,
2019-04-08 19:35:53 +03:00
"declaration-colon-newline-after": null,
"function-url-quotes": ["always"],
"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,
"value-keyword-case": [
"lower",
{
"camelCaseSvgKeywords": true
}
],
"selector-not-notation": null,
2019-04-08 19:35:53 +03:00
"value-list-comma-newline-after": null,
"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
}
}