-
Notifications
You must be signed in to change notification settings - Fork 19
/
.eslintrc.json
36 lines (34 loc) · 916 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
36
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module",
"project": ["./tsconfig.json"]
},
"ignorePatterns": ["dist", "node_modules", "vite.config.ts"],
"env": {
"es6": true,
"browser": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"standard",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"overrides": [
],
"plugins": [
"react",
"prettier"
],
"rules": {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-inferrable-types": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/consistent-type-imports": "error",
"prettier/prettier": "error"
}
}