-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.json
68 lines (68 loc) · 1.24 KB
/
.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"extends": [
"next/core-web-vitals",
"next/typescript",
"plugin:tailwindcss/recommended"
],
"plugins": [
"tailwindcss",
"react",
"jsdoc"
],
"rules": {
//required for NextJS
"react/react-in-jsx-scope": "off",
"no-extra-semi": "off",
"react/display-name": "warn",
"react/prefer-read-only-props": "warn",
"jsdoc/check-alignment": 1,
"jsdoc/no-types": 1
},
// We don't want to check for undefineds in typescript since typescript already does that better
"overrides": [
{
"files": [
"*.ts",
"*.tsx"
],
"rules": {
"no-undef": "off"
}
}
],
"settings": {
"tailwindcss": {
"callees": [
"cn",
"cva"
],
"config": "web/tailwind.config.js",
"cssFiles": [
"web/app/(frontend)/globals.css"
]
}
},
"globals": {
"React": "writable",
"JSX": "readonly"
},
"env": {
"browser": true,
"node": true,
"es6": true
},
"parserOptions": {
"project": [
"web/tsconfig.json"
]
},
"ignorePatterns": [
"node_modules/**",
"web_static/**",
"src-tauri/**",
".next/**",
"web/.next/**",
"web/node_modules/**",
"**/components/ui/**"
]
}