summaryrefslogtreecommitdiff
path: root/src/stylesheets/.stylelintrc.json
blob: dfc06572a02a04c8340cb611da1199a0c2a64a90 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  "extends": "stylelint-config-standard",
  "rules": {
    "alpha-value-notation": "number",
    "comment-empty-line-before": null,
    "property-no-vendor-prefix": [true, { "ignoreProperties": ["text-size-adjust", "interpolation-mode"] }],
    "no-descending-specificity": null,
    "number-max-precision": 6,
    "selector-attribute-quotes": null,
    "selector-class-pattern": null,
    "value-keyword-case": ["lower", { "ignoreKeywords": ["currentColor", "optimizeLegibility", "optimizeSpeed"] }]
  }
}