forked from fei-protocol/fei-protocol-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
49 lines (48 loc) · 1.09 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
47
48
49
{
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "prettier"],
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended", "prettier"],
"rules": {
"prettier/prettier": 2,
"@typescript-eslint/no-empty-function": "off"
}
}
/*{
"env": {
"browser": true,
"commonjs": true,
"es2021": true
},
"extends": ["airbnb-base"],
"parserOptions": {
"ecmaVersion": 12
},
"rules": {
"prefer-arrow-callback": 0,
"comma-dangle": 0,
"func-names": 0,
"space-before-function-paren": 0,
"max-len": 0,
"no-multi-spaces": 0,
"no-trailing-spaces": 0,
"object-curly-spacing": 0,
"no-tabs": 0,
"no-unused-expressions": 0,
"no-sequences": 0,
"no-mixed-spaces-and-tabs": 0,
"no-await-in-loop": 0,
"guard-for-in": 0,
"no-restricted-syntax": 0,
"no-underscore-dangle": 0,
"no-unused-vars": 0,
"no-empty-function": 0,
"no-console": 0
},
"globals": {
"artifacts": "readonly",
"describe": "readonly",
"beforeEach": "readonly",
"it": "readonly"
}
}*/