diff options
author | ArthurHoaro <arthur@hoa.ro> | 2020-09-23 15:50:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-23 15:50:23 +0200 |
commit | cdb96276c1f4a1b3484ac4a1729fa5c9cdff38a5 (patch) | |
tree | cdc10640a45daab543c25debe4a193cb3d98c8c4 /.dev/.stylelintrc.js | |
parent | 5baafe5001ef2fbe88d3fcdcc225ec12edd3fef1 (diff) | |
parent | 9192a48be300fcfd2a6ede927b0611c66f250012 (diff) | |
download | Shaarli-cdb96276c1f4a1b3484ac4a1729fa5c9cdff38a5.tar.gz Shaarli-cdb96276c1f4a1b3484ac4a1729fa5c9cdff38a5.tar.zst Shaarli-cdb96276c1f4a1b3484ac4a1729fa5c9cdff38a5.zip |
Merge pull request #1561 from ArthurHoaro/feature/front-deps-upgrade
Diffstat (limited to '.dev/.stylelintrc.js')
-rw-r--r-- | .dev/.stylelintrc.js | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.dev/.stylelintrc.js b/.dev/.stylelintrc.js new file mode 100644 index 00000000..a754e33b --- /dev/null +++ b/.dev/.stylelintrc.js | |||
@@ -0,0 +1,15 @@ | |||
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 | } | ||