aboutsummaryrefslogtreecommitdiffhomepage
path: root/.dev/.stylelintrc.js
blob: a754e33b99751c1cf43e9a32b65093bcf0a29ac8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module.exports = {
  extends: 'stylelint-config-standard',
  plugins: [
    "stylelint-scss"
  ],
  rules: {
    "indentation": [2],
    "number-leading-zero": null,
    // Replace CSS @ with SASS ones
    "at-rule-no-unknown": null,
    "scss/at-rule-no-unknown": true,
    // not compatible with SASS apparently
    "no-descending-specificity": null
  },
}