-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
54 lines (54 loc) · 994 Bytes
/
.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
module.exports = {
plugins: ['html', 'import', 'prettier', 'standard'],
extends: [
'eslint:recommended',
'plugin:import/errors',
'plugin:import/warnings',
'standard',
'prettier',
'prettier/standard'
],
parser: 'babel-eslint',
parserOptions: {
ecmaVersion: 2020,
sourceType: 'module',
ecmaFeatures: {
impliedStrict: true
}
},
rules: {
'arrow-body-style': [2, 'as-needed'],
'no-alert': 1,
'no-console': 1,
'no-debugger': 1,
'no-unused-expressions': [
2,
{
allowTaggedTemplates: true
}
],
'prefer-const': [
2,
{
destructuring: 'all'
}
],
quotes: [2, 'single', 'avoid-escape'],
'prettier/prettier': [
'error',
{
printWidth: 80,
semi: false,
singleQuote: true,
trailingComma: 'none'
}
]
},
env: {
browser: true,
es2020: true,
jest: true,
jquery: true,
node: true
}
}