-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy path.eslintrc.js
More file actions
43 lines (43 loc) · 1.05 KB
/
.eslintrc.js
File metadata and controls
43 lines (43 loc) · 1.05 KB
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
module.exports = {
env: {
"es2020": true,
"node": true,
"browser": true,
"jest": true
},
extends: 'standard',
// "globals": {
// "Atomics": "readonly",
// "SharedArrayBuffer": "readonly"
// },
// "parserOptions": {
// "ecmaFeatures": {
// "jsx": true
// },
// "ecmaVersion": 2015,
// "sourceType": "module"
// },
parser: "@babel/eslint-parser", // Use Babel parser to handle modern JS syntax
plugins: [
'standard',
'promise'
],
rules: {
'semi': ['error', 'always'],
'semi-spacing': ['error', { before: false, after: true }],
'camelcase': 'off',
'no-tabs': 'off',
'eqeqeq': 'off',
'no-unused-vars': 'warn',
'no-undef': 'warn',
'no-prototype-builtins': 'off',
'no-extend-native': 'off',
'no-fallthrough': 'off',
'prefer-promise-reject-errors': 'off',
'prefer-regex-literals': 'off',
'no-useless-escape': 'off',
'n/handle-callback-err': 'off',
'n/no-callback-literal': 'off',
'no-async-promise-executor': 'off'
}
};