diff options
Diffstat (limited to 'src/pybind/mgr/dashboard/frontend/.stylelintrc')
-rw-r--r-- | src/pybind/mgr/dashboard/frontend/.stylelintrc | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/src/pybind/mgr/dashboard/frontend/.stylelintrc b/src/pybind/mgr/dashboard/frontend/.stylelintrc new file mode 100644 index 000000000..c48d66dca --- /dev/null +++ b/src/pybind/mgr/dashboard/frontend/.stylelintrc @@ -0,0 +1,43 @@ +{ + "extends": "stylelint-config-sass-guidelines", + "plugins": [ + "stylelint-declaration-use-variable" + ], + "rules": { + "function-parentheses-space-inside": null, + "indentation": null, + "selector-no-qualifying-type": null, + "selector-class-pattern": null, + "selector-pseudo-element-no-unknown": null, + "selector-max-id": null, + "selector-max-compound-selectors": null, + "scss/at-extend-no-missing-placeholder": null, + "max-nesting-depth": null, + "scss/at-import-partial-extension-blacklist": null, + "value-no-vendor-prefix": null, + "scss/dollar-variable-pattern": [ + "^([a-z][a-z0-9]*)(-[a-z0-9]+)*$", + "message": "Variable name should be written in lower kebab-case (scss/dollar-variable-pattern)" + ], + "sh-waqar/declaration-use-variable": [ + [ + "/color/", + { + "ignoreValues": [ + "inherit", + "initial", + "transparent", + "/darken/", + "/\\w+\\.\\$.+/" + ] + } + ] + ], + "property-no-unknown": [ + true, + { + "ignoreSelectors": [":export"] + } + ] + } +} |