aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/.stylelintrc.json
blob: 3b6a465e17e771399727305010cdfd4a3dffae97 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
  "extends": "stylelint-config-sass-guidelines",
  "rules": {
    "scss/at-import-no-partial-leading-underscore": null,
    "color-hex-case": null,
    "color-hex-length": null,
    "order/properties-alphabetical-order": null,
    "selector-pseudo-element-no-unknown": [
      true,
      {
        "ignorePseudoElements": [ "ng-deep" ]
      }
    ],
    "max-nesting-depth": [
      8,
      {
        "ignore": [ "blockless-at-rules", "pseudo-classes" ]
      }
    ],
    "selector-max-compound-selectors": 9,
    "selector-no-qualifying-type": null,
    "scss/at-extend-no-missing-placeholder": null,
    "number-leading-zero": null,
    "rule-empty-line-before": null,
    "selector-max-id": null,
    "scss/at-function-pattern": null,
    "function-parentheses-space-inside": "never-single-line",
    "property-no-vendor-prefix": [
      true,
      {
        "ignoreProperties": [ "mask-image", "mask-size" ]
      }
    ]
  }
}