Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/privacy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2019-08-29 09:20:37 +0300
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2019-08-29 09:41:35 +0300
commit76f41b4f1c621c46a0d1249b03bf409ff018fb70 (patch)
treea0444eedfbe8f7fac7c08984a4b1e74b18e000e0 /.stylelintrc.js
parent6ad9ddbf7d83eadafbfb9a5d6e2db1b9b63e52ed (diff)
Use Actions and cleanup code
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
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 0000000..b993752
--- /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']
+}