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

stylelint.config.js - github.com/nextcloud/tasks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4a548a40b692c4036a13ba74451537b67e374c3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module.exports = {
	extends: '@nextcloud/stylelint-config',
	rules: {
		'no-eol-whitespace': true,
		'length-zero-no-unit': true,
		'block-opening-brace-space-before': 'always',
		'number-leading-zero': 'never',
		'selector-combinator-space-before': 'always',
		'selector-combinator-space-after': 'always',
		'declaration-colon-space-after': 'always',
		'declaration-colon-space-before': 'never'
	}
}