]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/.stylelintrc.json
Fix scss lint
[github/Chocobozzz/PeerTube.git] / client / .stylelintrc.json
1 {
2 "extends": "stylelint-config-sass-guidelines",
3 "rules": {
4 "scss/at-import-no-partial-leading-underscore": null,
5 "color-hex-case": null,
6 "color-hex-length": null,
7 "selector-pseudo-element-no-unknown": [
8 true,
9 {
10 "ignorePseudoElements": [ "ng-deep" ]
11 }
12 ],
13 "max-nesting-depth": [
14 8,
15 {
16 "ignore": [ "blockless-at-rules", "pseudo-classes" ]
17 }
18 ],
19 "selector-max-compound-selectors": 9,
20 "selector-no-qualifying-type": null,
21 "scss/at-extend-no-missing-placeholder": null,
22 "number-leading-zero": null,
23 "rule-empty-line-before": null,
24 "selector-max-id": null,
25 "scss/at-function-pattern": null,
26 "property-no-vendor-prefix": [
27 true,
28 {
29 "ignoreProperties": [ "mask-image", "mask-size" ]
30 }
31 ]
32 }
33 }