@shopware-ag/admin-stylelint-rules
v1.0.6
Published
This package provides custom stylelint rules for Shopware Administration development.
Maintainers
Keywords
Readme
Stylelint Rules for Shopware Administration
This package provides custom stylelint rules for Shopware Administration development.
Installation
Install the package and its peer dependency stylelint:
npm install @shopware-ag/admin-stylelint-rules stylelint --save-devUsage
Add the plugin to your stylelint configuration file (e.g., .stylelintrc.json) and configure the rules you want to use.
{
"plugins": [
"@shopware-ag/admin-stylelint-rules"
],
"rules": {
"@shopware-ag/admin-stylelint-rules/wrong-scss-import": true
}
}Rules
@shopware-ag/admin-stylelint-rules/wrong-scss-import
This rule prevents the use of the .scss file extension in @import statements that start with ~scss. It encourages a consistent import style for shared SCSS resources.
This rule can automatically fix violations.
Example of incorrect code for this rule:
@import "~scss/variables.scss";
@import '~scss/mixins.scss';Example of correct code for this rule:
@import "~scss/variables";
@import '~scss/mixins';