]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/.stylelintrc.json
Bumped to version v5.2.1
[github/Chocobozzz/PeerTube.git] / client / .stylelintrc.json
CommitLineData
931d3430
C
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,
931d3430
C
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,
bc4c9cc1
C
26 "property-no-vendor-prefix": [
27 true,
28 {
fa1e07ca 29 "ignoreProperties": [ "mask-image", "mask-size" ]
bc4c9cc1
C
30 }
31 ]
931d3430
C
32 }
33}