summaryrefslogtreecommitdiffstats
path: root/.stylelintrc.js
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2018-09-28 19:26:05 +0200
committerGitHub <noreply@github.com>2018-09-28 19:26:05 +0200
commitd520d96fee5e791cf7cea9cd5ffcbbbe4ce8d2ea (patch)
treecb79e4bfd4e00b395b3c3b0cc88fe841925d1d90 /.stylelintrc.js
parent754ea8e03f70999a08d9ea172b423aeeb6dcc413 (diff)
parentfc816f42b0c6934c00627e97f0786e8324e9218f (diff)
Merge pull request #596 from nextcloud/vuev3.0.0-alpha1
Contacts 3.0.0
Diffstat (limited to '.stylelintrc.js')
-rw-r--r--.stylelintrc.js26
1 files changed, 26 insertions, 0 deletions
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']
+}