stylelint-scss-helix-structure
v3.1.0
Published
Stylelint rules for helix structure
Downloads
364
Readme
stylelint-scss-helix-structure
Install via npm:
npm install stylelint-scss-helix-structure --save-dev
.stylelintrc:
"plugins": [
"stylelint-scss-helix-structure"
],
"rules": {
"helix-structure/restricted-imports": [true, {
"basePath": "./src",
"alias": {
"~": "./"
}
}],
"helix-structure/restricted-tilde-imports": [true, {
"basePath": "./src",
"ignoreFix": false,
"alias": {
"~": "./"
}
}],
...