forked from nabilfreeman/kalamata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
52 lines (52 loc) · 1.21 KB
/
.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
module.exports = {
env: {
browser: true,
commonjs: true,
es6: true,
},
extends: [
'airbnb-base',
],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
},
parserOptions: {
ecmaVersion: 2018,
},
rules: {
"import/no-named-as-default-member": 0,
"import/no-named-as-default": 0,
"no-tabs": 0,
"camelcase": 0,
"no-console": 0,
"no-param-reassign": 0,
"import/prefer-default-export": 0,
"consistent-return": 0,
"max-len": 0,
"no-continue": 0,
'no-case-declarations': 0,
"indent": [2, "tab", { "SwitchCase": 1, "VariableDeclarator": 1 }],
"class-methods-use-this": 0,
"no-restricted-syntax": 0,
"prefer-template": 0,
"no-plusplus": 0,
"default-case": 0,
"no-useless-constructor": 0,
"jsx-a11y/accessible-emoji": 0,
"no-use-before-define": 0,
"curly": 0,
"no-unused-expressions": ["error", { "allowShortCircuit": true }],
"prefer-destructuring": 0,
"no-await-in-loop": 0,
"global-require": 0,
"func-names": 0,
"linebreak-style": 0,
"no-empty-function": 0,
"no-labels": 0,
"func-names": 0,
"guard-for-in": 0,
"radix": 0,
"import/no-dynamic-require": 0,
},
};