-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
41 lines (41 loc) · 1003 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
module.exports = {
env: {
browser: false,
es6: true
},
extends: [
'airbnb-base',
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended'
],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly'
},
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module'
},
plugins: [
'@typescript-eslint'
],
rules: {
// "object-curly-newline": ["error", "always"],
'max-len': ['error', { code: 120, tabWidth: 2 }],
indent: ['error', 2],
'import/no-unresolved': 0,
'import/extensions': ['error', 'never'],
'implicit-arrow-linebreak': ['error', 'below'],
'@typescript-eslint/member-delimiter-style': ['error', {
multiline: {
delimiter: 'none',
requireLast: false
}
}],
'@typescript-eslint/camelcase': 0,
'class-methods-use-this': 0,
semi: ['error', 'never'],
'comma-dangle': ['error', 'never'],
quotes: [2, 'single', 'avoid-escape']
}
}