aboutsummaryrefslogtreecommitdiffstats
path: root/.scss-lint.yml
blob: b6bcde4903d7c5bb9a2fab05725dfa2525b135d2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
linters:
  Comment:
    enabled: false
  HexLength:
    style: "long"
  HexNotation:
    style: "uppercase"
  IdSelector:
    enabled: false
  ImportantRule:  # While I agree with this one, we do need to use !important in some cases
    enabled: false
  NameFormat:
    convention: "snake_case"
  NestingDepth:
    max_depth: 4
  SelectorDepth:
    max_depth: 4
  StringQuotes:
    style: "double_quotes"