From 88ddcdd4c825f477efda414b1a52c78d9f1fbc31 Mon Sep 17 00:00:00 2001 From: dartcafe Date: Fri, 3 Jan 2020 14:03:14 +0100 Subject: dependency tidy and add stylelint --- .stylelintrc.js | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .stylelintrc.js (limited to '.stylelintrc.js') diff --git a/.stylelintrc.js b/.stylelintrc.js new file mode 100644 index 00000000..b9937526 --- /dev/null +++ b/.stylelintrc.js @@ -0,0 +1,26 @@ +module.exports = { + extends: 'stylelint-config-recommended-scss', + rules: { + indentation: 'tab', + 'selector-type-no-unknown': null, + 'number-leading-zero': null, + 'rule-empty-line-before': [ + 'always', + { + ignore: ['after-comment', 'inside-block'] + } + ], + 'declaration-empty-line-before': [ + 'never', + { + ignore: ['after-declaration'] + } + ], + 'comment-empty-line-before': null, + 'selector-type-case': null, + 'selector-list-comma-newline-after': null, + 'no-descending-specificity': null, + 'string-quotes': 'single' + }, + plugins: ['stylelint-scss'] +} -- cgit v1.2.3