-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy path.eslintrc.cjs
More file actions
40 lines (40 loc) · 991 Bytes
/
.eslintrc.cjs
File metadata and controls
40 lines (40 loc) · 991 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/**
* SPDX-FileCopyrightText: 2018 Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
module.exports = {
extends: ['@nextcloud/eslint-config/vue3', 'prettier'],
plugins: ['promise'],
rules: {
'arrow-body-style': 'error',
'jsdoc/require-jsdoc': [
'error' | 'warn',
{
publicOnly: {
ancestorsOnly: true,
},
},
],
'jsdoc/require-param-description': 'off',
'no-array-constructor': 'error',
'no-continue': 'error',
'no-else-return': ['error', { allowElseIf: false }],
'no-lonely-if': 'error',
'no-negated-condition': 'error',
'no-plusplus': ['error', { allowForLoopAfterthoughts: true }],
'prefer-template': 'error',
'vue/first-attribute-linebreak': [
'error',
{ multiline: 'below', singleline: 'ignore' },
],
'vue/no-v-model-argument': 'off',
'vue/no-unused-properties': [
'error',
{
groups: ['props', 'data', 'computed', 'methods'],
deepData: true,
ignorePublicMembers: true,
},
],
},
}