summaryrefslogtreecommitdiff
path: root/stylelint.config.mjs
blob: 249cac1ccae995541c4e9390dec94978b2cb1634 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export default {
  extends: ["stylelint-config-standard"],
  rules: {
    "at-rule-empty-line-before": null,
    "color-named": "never",
    "color-no-hex": true,
    "custom-property-empty-line-before": null,
    "declaration-block-single-line-max-declarations": null,
    "function-disallowed-list": ["rgb", "rgba", "hsl", "hsla"],
    "hue-degree-notation": "angle",
    "media-feature-range-notation": "context",
    "no-descending-specificity": null,
  },
};