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

.eslintrc.js - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1f5dd9468f53c91aae9849fd820d5d02cda3a2ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module.exports = {
	globals: {
		__webpack_nonce__: true,
		__webpack_public_path__: true,
		_: true,
		$: true,
		moment: true,
		escapeHTML: true,
		oc_userconfig: true,
		dayNames: true,
		firstDay: true
	},
	extends: ['nextcloud'],
	rules: {
		'no-tabs': 'warn',
	}
}