forked from keep-network/tbtc-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
35 lines (35 loc) · 849 Bytes
/
.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
{
"root": true,
"extends": ["@thesis-co"],
"rules": {
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": [
"./test/**/*.ts",
"hardhat.config.ts"
]
}
],
"no-console": "off",
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/no-extra-semi": "off",
"no-plusplus": [ "error", { "allowForLoopAfterthoughts": true } ],
"@typescript-eslint/consistent-type-imports": "warn",
"import/order": [
"warn",
{
"groups": [ "builtin", "external", "parent", "sibling", "index", "type" ],
"newlines-between": "always"
}
],
"valid-jsdoc": [
"error",
{
"prefer": { "return": "returns" },
"requireParamType": false,
"requireReturnType": false
}
]
}
}