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

stylelint.config.js - github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 687a0dc7a114a1ab43046257ab16885ff3d53bb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
const stylelintConfig = require('@nextcloud/stylelint-config')

const overrides = {
	ignoreFiles: ['**/*.js', '**/*.gif', '**/*.svg'],
	rules: {
		'rule-empty-line-before': [
			'always-multi-line',
			{
				ignore: ['after-comment', 'inside-block'],
			},
		],
	},
}

module.exports = { ...stylelintConfig, ...overrides }