forked from equinor/videx-wellog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
46 lines (46 loc) · 1.01 KB
/
.eslintrc
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
{
"env": {
"es6": true,
"node": true
},
"settings": {
"import/resolver": {
"node": {
"extensions": [".ts"]
}
}
},
"extends": [
"airbnb-base"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"rules": {
"one-var": "off",
"no-mixed-operators": "off",
"no-restricted-properties": "off",
"no-param-reassign": "off",
"no-plusplus": "off",
"no-underscore-dangle": "off",
"no-bitwise": "off",
"arrow-parens": "off",
"object-curly-newline": "off",
"prefer-destructuring": "off",
"one-var-declaration-per-line": "off",
"no-unused-vars": "off",
"no-undef": "off",
"no-dupe-class-members": "off",
"comma-dangle": "off",
"max-len": "off",
"lines-between-class-members": "off",
"import/prefer-default-export": "off",
"import/extensions": "off"
}
}