]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/.stylelintrc.json
Translated using Weblate (Ukrainian)
[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,
7 "order/properties-alphabetical-order": null,
8 "selector-pseudo-element-no-unknown": [
9 true,
10 {
11 "ignorePseudoElements": [ "ng-deep" ]
12 }
13 ],
14 "max-nesting-depth": [
15 8,
16 {
17 "ignore": [ "blockless-at-rules", "pseudo-classes" ]
18 }
19 ],
20 "selector-max-compound-selectors": 9,
21 "selector-no-qualifying-type": null,
22 "scss/at-extend-no-missing-placeholder": null,
23 "number-leading-zero": null,
24 "rule-empty-line-before": null,
25 "selector-max-id": null,
26 "scss/at-function-pattern": null,
bc4c9cc1
C
27 "function-parentheses-space-inside": "never-single-line",
28 "property-no-vendor-prefix": [
29 true,
30 {
fa1e07ca 31 "ignoreProperties": [ "mask-image", "mask-size" ]
bc4c9cc1
C
32 }
33 ]
931d3430
C
34 }
35}