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

.eslintrc.js - github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 287ab7ddb5b56489d66d5c9d46951700d20cfecb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module.exports = {
	extends: [
		'@nextcloud'
	],
	overrides: [
		{
			'files': ['**/*.spec.js'],
			'rules': {
				'node/no-unpublished-import': 0
			}
		}
	]
}