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

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

stylelintConfig.ignoreFiles = ['css/At.scss']

stylelintConfig.rules['at-rule-no-unknown'] = [
	true, {
		ignoreAtRules: ['include', 'mixin', 'use'],
	},
]

module.exports = stylelintConfig