aboutsummaryrefslogtreecommitdiffstats
path: root/.scss-lint.yml
blob: dc53c5d4c101b435ed581a3e5bda6f66746ea304 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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"
  SelectorDepth:
    max_depth: 4
  StringQuotes:
    style: "double_quotes"