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

github.com/nextcloud/tasks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaimund Schlüßler <raimund.schluessler@mailbox.org>2018-08-07 22:35:10 +0300
committerRaimund Schlüßler <raimund.schluessler@mailbox.org>2018-08-07 22:35:10 +0300
commit18f67c59faedbeb59653ce05addc2f5b84718854 (patch)
treef03e41efe1e027cd798a9fb4d947714000855663 /.stylelintrc
parentf901157ebdd913ae4bbf803b1d447487640c873e (diff)
Move gulp, npm and make file to app root folder
Diffstat (limited to '.stylelintrc')
-rw-r--r--.stylelintrc16
1 files changed, 16 insertions, 0 deletions
diff --git a/.stylelintrc b/.stylelintrc
new file mode 100644
index 00000000..7ef027cc
--- /dev/null
+++ b/.stylelintrc
@@ -0,0 +1,16 @@
+{
+ "extends": "stylelint-config-standard",
+ "plugins": [
+ "stylelint-scss"
+ ],
+ "rules": {
+ "indentation": "tab",
+ "number-leading-zero": "never",
+ "comment-empty-line-before": ["always", {
+ "except": ["first-nested"]
+ }],
+ "at-rule-no-unknown": null,
+ "scss/at-rule-no-unknown": true,
+ "no-descending-specificity": null
+ }
+}