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

.stylelintrc - github.com/nextcloud/tasks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a811b81e36821c53835add32c8e7ff82f2ef42e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
	"extends": "stylelint-config-recommended-scss",
	"rules": {
		"no-eol-whitespace": true,
		"length-zero-no-unit": true,
		"block-opening-brace-space-before": "always",
		"block-no-empty": true,
		"indentation": "tab",
		"selector-type-no-unknown": null,
		"number-leading-zero": "never",
		"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",
		"selector-combinator-space-before": "always",
		"selector-combinator-space-after": "always",
		"declaration-block-no-duplicate-properties": true,
		"no-extra-semicolons": true,
		"declaration-colon-space-after": "always",
		"declaration-colon-space-before": "never"
	},
	"plugins": [
		"stylelint-scss"
	]
}