aboutsummaryrefslogtreecommitdiffstats
path: root/.stylelintrc
blob: d080d68d93a04d5266315126266b92be4bf0172c (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
  "extends": "stylelint-config-standard",
  "rules": {
    "color-named": "never",
    "font-family-name-quotes": "always-where-recommended",
    "font-weight-notation": "numeric",
    "function-url-quotes": "always",
    "number-leading-zero": "never",
    "value-no-vendor-prefix": true,
    "value-list-comma-newline-before": "never-multi-line",
    "custom-property-empty-line-before": "never",
    "property-no-unknown": [
      true,
      {
        "ignoreProperties": [
          "composes",
          "all",
          "-webkit-appearance"
        ]
      }
    ],
    "declaration-block-semicolon-newline-after": "always",
    "block-opening-brace-newline-after": "always",
    "selector-attribute-quotes": "always",
    "selector-max-specificity": "0,5,2",
    "selector-pseudo-class-no-unknown": [
      true,
      {
        "ignorePseudoClasses": ["local", "global"]
      }
    ],
    "at-rule-empty-line-before": [
      "always",
      {
        "ignore": [
          "after-comment",
        ]
      }
    ],
    "indentation": [
      2,
      {
        "indentInsideParens": "once-at-root-twice-in-block"
      }
    ],
    "max-nesting-depth": 3,
    "no-duplicate-selectors": true,
    "no-unknown-animations": true
  }
}