-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
35 lines (34 loc) · 940 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
{
"$schema": "https://json.schemastore.org/eslintrc",
"root": true,
"extends": ["next/core-web-vitals", "prettier", "plugin:tailwindcss/recommended", "plugin:@typescript-eslint/recommended"],
"parser": "@typescript-eslint/parser",
"plugins": ["tailwindcss", "@typescript-eslint"],
"rules": {
"react/jsx-key": "off",
"tailwindcss/no-custom-classname": "off",
"tailwindcss/classnames-order": "error",
"no-console": ["error", { "allow": ["warn", "error"] }],
"@typescript-eslint/no-unnecessary-condition": "error",
"@typescript-eslint/no-explicit-any": "warn"
},
"settings": {
"tailwindcss": {
"callees": ["cn"],
"config": "tailwind.config.js"
}
},
"overrides": [
{
"files": ["*.ts", "*.tsx"],
"parser": "@typescript-eslint/parser"
}
],
"parserOptions": {
"ecmaVersion": 2019,
"project": ["./tsconfig.json"]
},
"env": {
"es6": true
}
}