-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.eslintrc.js
54 lines (54 loc) · 1.11 KB
/
.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
module.exports = {
root: true,
parser: "@typescript-eslint/parser",
parserOptions: {
ecmaVersion: "latest",
sourceType: "module",
project: ["./tsconfig.json"],
ecmaFeatures: {
jsx: true
},
tsconfigRootDir: __dirname
},
extends: [
"universe/native",
"universe/shared/typescript-analysis"
],
settings: {
"import/resolver": {
typescript: {},
node: {
extensions: [".js", ".jsx", ".ts", ".tsx"]
}
}
},
plugins: [
"@typescript-eslint"
],
rules: {
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/no-explicit-any": "error",
"@typescript-eslint/no-floating-promises": "warn",
"no-console": "error",
"no-debugger": "error",
"import/no-unresolved": "error",
"@typescript-eslint/explicit-function-return-type": "off"
},
ignorePatterns: [
"node_modules/",
".expo/",
"dist/",
"web-build/",
"*.config.js",
".eslintrc.js",
"**/*.d.ts"
],
overrides: [
{
files: ["src/**/*.d.ts"],
parserOptions: {
project: ["./tsconfig.json"]
}
}
]
};