mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-02-08 18:39:31 +08:00
25 lines
478 B
JSON
25 lines
478 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/eslintrc",
|
|
"root": true,
|
|
"extends": [
|
|
"next/core-web-vitals",
|
|
"turbo",
|
|
"prettier",
|
|
"plugin:tailwindcss/recommended"
|
|
],
|
|
"plugins": ["tailwindcss"],
|
|
"rules": {
|
|
"@next/next/no-html-link-for-pages": "off",
|
|
"react/jsx-key": "off",
|
|
"tailwindcss/no-custom-classname": "off"
|
|
},
|
|
"settings": {
|
|
"tailwindcss": {
|
|
"callees": ["cn"]
|
|
},
|
|
"next": {
|
|
"rootDir": ["apps/*/"]
|
|
}
|
|
}
|
|
}
|