-
Notifications
You must be signed in to change notification settings - Fork 101
/
.eslintrc.js
52 lines (52 loc) · 1.44 KB
/
.eslintrc.js
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
41
42
43
44
45
46
47
48
49
50
51
52
module.exports = {
root: true,
extends: ['plugin:vue/essential', '@vue/airbnb', '@vue/typescript'],
rules: {
// https://github.com/vuejs/vue-cli/issues/1672
indent: 'off',
'space-infix-ops': 'off',
'object-curly-newline': 'off',
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-plusplus': ['error', { allowForLoopAfterthoughts: true }],
'import/extensions': ['off'],
'import/no-unresolved': ['off'],
'import/no-duplicates': ['off'],
'import/no-named-as-default': ['off'],
'import/no-named-as-default-member': ['off'],
'import/no-extraneous-dependencies': ['off'],
'function-paren-newline': ['off'],
'implicit-arrow-linebreak': ['off'],
'no-confusing-arrow': ['off'],
'class-methods-use-this': [
'error',
{
exceptMethods: [
'render',
'beforeCreate',
'created',
'beforeMount',
'mounted',
'beforeUpdate',
'updated',
'activated',
'deactivated',
'beforeDestroy',
'destroyed',
'errorCaptured',
],
},
],
'max-len': [
'error',
{
code: 80,
ignoreUrls: true,
ignoreStrings: true,
ignoreComments: true,
ignoreTrailingComments: true,
ignoreTemplateLiterals: true,
},
],
},
};