-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.js
More file actions
35 lines (35 loc) · 880 Bytes
/
.eslintrc.js
File metadata and controls
35 lines (35 loc) · 880 Bytes
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
module.exports = {
extends: ['airbnb-base', 'prettier'],
env: { es6: true, commonjs: true, node: true, jest: true },
plugins: ['import'],
parserOptions: {
ecmaVersion: 6,
},
root: true,
rules: {
'arrow-body-style': 0,
'import/no-extraneous-dependencies': 0,
'prefer-arrow-callback': 0,
'prefer-template': 0,
'func-names': 0,
'no-underscore-dangle': 0,
'no-console': 0,
'no-shadow': 0,
'no-unused-vars': 0,
'no-prototype-builtins': 0,
'no-return-assign': 0,
'new-cap': 0,
'global-require': 0,
'prefer-spread': 0,
'prefer-object-spread': 0,
'prefer-rest-params': 0,
'prefer-destructuring': 0,
'object-shorthand': 0,
'max-classes-per-file': 0,
'no-param-reassign': 0,
'no-use-before-define': 0,
'import/no-dynamic-require': 0,
'spaced-comment': 0,
},
overrides: [],
};