-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
.eslintrc.yml
55 lines (50 loc) · 938 Bytes
/
.eslintrc.yml
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
root: true
env:
es6: true
browser: true
jest: true
globals:
$: true
chrome: true
extends:
- airbnb-base
- plugin:vue/base
parserOptions:
sourceType: module
parser: 'babel-eslint'
rules:
indent:
- error
- 4
linebreak-style:
- error
- unix
quotes:
- error
- single
semi:
- error
- always
camelcase: 0
strict: 0
no-eval: 0
max-len: [1, { code: 120 }]
global-require: 0
no-unused-vars: 1
func-names: 0
no-console: 0
arrow-parens: 0
comma-dangle: ['error', 'only-multiline']
no-param-reassign: 0
space-before-function-paren: 0
prefer-destructuring: 0
prefer-promise-reject-errors: 0
object-curly-newline: 0
import/no-unresolved: [0, {commonjs: true, amd: true}]
import/no-extraneous-dependencies: 0
import/no-absolute-path: 0
import/prefer-default-export: 0
import/extensions: ['off', 'always', {
'js': 'never',
'vue': 'never'
}]