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

github.com/nextcloud/notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkorelstar <korelstar@users.noreply.github.com>2019-05-22 22:40:03 +0300
committerGitHub <noreply@github.com>2019-05-22 22:40:03 +0300
commitfc7631eb9e7e89876f2570d18b872b89fb30832c (patch)
tree971a1b0d518d79adda0522c2a17485d988db77cc /.stylelintrc.js
parentdeb80e4774d42151c7af3549832d5a1dc863cbca (diff)
switch to Vue.js
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']
+}