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

.eslintrc.js - github.com/nextcloud/notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6186282e221fc9240e9050ced08a7fc52287cd2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module.exports = {
	extends: [
		'@nextcloud',
	],
	rules: {
		// no ending html tag on a new line (was warn in "vue/strongly-recommended")
		'vue/html-closing-bracket-newline': ['error', { multiline: 'always' }],
		// do not require JSDoc comments
		'jsdoc/require-jsdoc': 'off',
		// allow first attribute in new line if multiline
		'vue/first-attribute-linebreak': ['error', {
			'singleline': 'beside',
			'multiline': 'ignore',
		}],
	},
}