-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy path.eslintrc.js
111 lines (105 loc) · 2.24 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
module.exports = {
root: true,
env: {
node: true,
},
extends: [
'plugin:vue/essential',
'eslint:recommended',
],
plugins: ['jest', 'cypress'],
rules: {
semi: [
'error',
'always',
],
'comma-dangle': [
'error',
'always-multiline',
],
indent: [
'error',
2,
{
SwitchCase: 1,
},
],
quotes: [
'error',
'single',
],
'object-curly-spacing': [
'warn',
'always',
{
arraysInObjects: false,
},
],
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'object-shorthand': 'error',
'space-before-function-paren': [
'error',
'never',
],
'keyword-spacing': 'error',
'vue/html-indent': [
'error',
2,
{
alignAttributesVertically: false,
},
],
'vue/html-closing-bracket-newline': [
'error',
{
singleline: 'never',
multiline: 'always',
},
],
'vue/html-self-closing': 'error',
'vue/mustache-interpolation-spacing': 'error',
'vue/multi-word-component-names' : 'off',
'vue/no-mutating-props': 'warn',
'template-curly-spacing': 'error',
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
},
parserOptions: {
parser: '@babel/eslint-parser',
},
overrides: [
{
files: [
'**/__tests__/*.{j,t}s?(x)',
'**/tests/unit/**/*.spec.{j,t}s?(x)',
'**/tests/unit/**/*.{j,t}s?(x)',
],
env: {
'jest/globals': true,
},
},
{
files: [
'**/tests/e2e/**/*.cy.{j,t}s?(x)',
'**/tests/e2e/**/*.{j,t}s?(x)',
],
rules: {
strict: 'off',
semi: ['error', 'always'],
'comma-dangle': ['error', 'always-multiline'],
indent: ['error', 2, { SwitchCase: 1 }],
'vue/html-indent': 'error',
quotes: ['error', 'single'],
'no-debugger': 'off',
'object-shorthand': 'error',
'space-before-function-paren': ['error', 'never'],
'keyword-spacing': 'error',
'prefer-arrow-callback': 'error',
},
env: {
mocha: true,
'cypress/globals': true,
node: true,
},
},
],
};