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

.eslintrc.js - github.com/nextcloud/deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 69b8d1e1c1381fe526de8de0993771d3918379b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module.exports = {
	root: true,
	extends: [
		'@nextcloud',
	],
	rules: {
		'jsdoc/require-param-description': ['off'],
		'jsdoc/require-param-type': ['off'],
		'jsdoc/check-param-names': ['off'],
		'jsdoc/no-undefined-types': ['off'],
		'jsdoc/require-property-description': ['off'],
		'import/no-named-as-default-member': ['off']
	},
}