]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - .dev/.stylelintrc.js
Upgrade front end dependencies
[github/shaarli/Shaarli.git] / .dev / .stylelintrc.js
1 module.exports = {
2 extends: 'stylelint-config-standard',
3 plugins: [
4 "stylelint-scss"
5 ],
6 rules: {
7 "indentation": [2],
8 "number-leading-zero": null,
9 // Replace CSS @ with SASS ones
10 "at-rule-no-unknown": null,
11 "scss/at-rule-no-unknown": true,
12 // not compatible with SASS apparently
13 "no-descending-specificity": null
14 },
15 }