Repo created
This commit is contained in:
parent
f3a6b3a320
commit
f954c78789
614 changed files with 135712 additions and 2 deletions
35
.stylelintrc.json
Normal file
35
.stylelintrc.json
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"plugins": ["stylelint-use-logical-spec", "@double-great/stylelint-a11y"],
|
||||
"extends": ["stylelint-config-standard", "stylelint-config-sass-guidelines"],
|
||||
"overrides": [
|
||||
{
|
||||
"files": ["**/*.scss"],
|
||||
"customSyntax": "postcss-scss",
|
||||
"rules": {
|
||||
"max-nesting-depth": null,
|
||||
"selector-max-compound-selectors": null
|
||||
}
|
||||
},
|
||||
{
|
||||
"files": ["**/*.css"],
|
||||
"rules": {
|
||||
}
|
||||
}
|
||||
],
|
||||
"rules": {
|
||||
"selector-no-qualifying-type": [
|
||||
true, {
|
||||
"ignore": ["attribute"]
|
||||
}],
|
||||
"selector-class-pattern": null,
|
||||
"selector-id-pattern": null,
|
||||
"selector-pseudo-class-no-unknown": [
|
||||
true,
|
||||
{
|
||||
"ignorePseudoClasses": ["deep", "global"]
|
||||
}
|
||||
],
|
||||
"a11y/no-outline-none": true,
|
||||
"liberty/use-logical-spec": ["always", { "except": ["float"] }]
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue