-
-
Notifications
You must be signed in to change notification settings - Fork 275
/
Copy path.eslintrc.json
38 lines (37 loc) · 904 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
37
38
/*
<ai_context>
Contains the ESLint configuration for the app.
</ai_context>
*/
{
"$schema": "https://json.schemastore.org/eslintrc",
"root": true,
"extends": [
"next/core-web-vitals",
"prettier",
"plugin:tailwindcss/recommended"
],
"plugins": ["tailwindcss"],
"rules": {
"@next/next/no-img-element": "off",
"jsx-a11y/alt-text": "off",
"react-hooks/exhaustive-deps": "off",
"tailwindcss/enforces-negative-arbitrary-values": "off",
"tailwindcss/no-contradicting-classname": "off",
"tailwindcss/no-custom-classname": "off",
"tailwindcss/no-unnecessary-arbitrary-value": "off",
"react/no-unescaped-entities": "off"
},
"settings": {
"tailwindcss": {
"callees": ["cn", "cva"],
"config": "tailwind.config.js"
}
},
"overrides": [
{
"files": ["*.ts", "*.tsx"],
"parser": "@typescript-eslint/parser"
}
]
}