forked from mckaywrigley/mckays-app-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
28 lines (28 loc) · 807 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
{
"$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"
}
]
}