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-30 23:22:27 +0300
committerRaimund Schlüßler <raimund.schluessler@mailbox.org>2019-01-25 22:35:01 +0300
commit93d27c1b94420603b8401b7022f6b1990c0baae2 (patch)
tree77c0f5961828ba5bbf5964312525f1bf8adcd31e /.stylelintrc
parent928026cb5ec9c3a9f113294a0a80b848b06c76bb (diff)
Improve webpack configuration
Diffstat (limited to '.stylelintrc')
-rw-r--r--.stylelintrc37
1 files changed, 20 insertions, 17 deletions
diff --git a/.stylelintrc b/.stylelintrc
index 42cbfe58..bdbd7a36 100644
--- a/.stylelintrc
+++ b/.stylelintrc
@@ -1,19 +1,22 @@
{
- "extends": "stylelint-config-standard",
- "plugins": [
- "stylelint-scss"
- ],
- "ignoreFiles": [
- "./css/src/sprite.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
- }
+ "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": null
+ },
+ "plugins": [
+ "stylelint-scss"
+ ]
}