-
Notifications
You must be signed in to change notification settings - Fork 4
/
.eslintrc.js
33 lines (33 loc) · 989 Bytes
/
.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
module.exports = {
root: true,
extends: [
"airbnb-typescript/base",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:prettier/recommended",
"prettier",
],
parserOptions: {
project: "./tsconfig.eslint.json",
tsconfigRootDir: __dirname,
},
ignorePatterns: ["**/artifacts", "**/coverage"],
rules: {
// helps code clarity
"@typescript-eslint/comma-dangle": "off",
// we prefer double quotes and backticks
"@typescript-eslint/quotes": "off",
// we use it for scripts
"no-console": "off",
// we use it for tests
"func-names": "off",
// we use it for tests
"import/no-extraneous-dependencies": "off",
// we use it for tests
"@typescript-eslint/no-unused-expressions": "off",
// prettier already checks this
"@typescript-eslint/indent": "off",
// we use it when accessing Etherscan data
"no-underscore-dangle": "off",
},
};