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: 0315c64d760e2796e0fe65e60809303e6bade407 (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',
	}
}