-
Notifications
You must be signed in to change notification settings - Fork 7
/
.eslintrc.json
35 lines (35 loc) · 958 Bytes
/
.eslintrc.json
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
{
"env": {
"browser": true,
"es2021": true,
"jest": true
},
"root": true,
"extends": ["airbnb-base", "plugin:@typescript-eslint/recommended", "prettier"],
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "import"],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"ignorePatterns": ["**/dist/*.js", "**/dist/*.d.ts"],
"rules": {
"import/extensions": "off",
"import/prefer-default-export": "off",
"linebreak-style": "off",
"implicit-arrow-linebreak": "off",
"no-use-before-define": "off",
"@typescript-eslint/no-use-before-define": "error"
},
"settings": {
"import/parsers": {
"@typescript-eslint/parser": [".ts", ".tsx"]
},
"import/resolver": {
"node": { "extensions": [".js", ".jsx", ".ts", ".tsx"] },
"typescript": {
"project": ["./backend/tsconfig.json", "./contracts/tsconfig.json"]
}
}
}
}