mirror of
https://github.com/run-llama/ai-chatbot.git
synced 2026-07-01 21:14:02 -04:00
23 lines
463 B
JSON
23 lines
463 B
JSON
{
|
|
"extends": [
|
|
"next/core-web-vitals",
|
|
"plugin:import/recommended",
|
|
"plugin:import/typescript",
|
|
"prettier",
|
|
"plugin:tailwindcss/recommended"
|
|
],
|
|
"plugins": ["tailwindcss"],
|
|
"rules": {
|
|
"tailwindcss/no-custom-classname": "off",
|
|
"tailwindcss/classnames-order": "off"
|
|
},
|
|
"settings": {
|
|
"import/resolver": {
|
|
"typescript": {
|
|
"alwaysTryTypes": true
|
|
}
|
|
}
|
|
},
|
|
"ignorePatterns": ["**/components/ui/**"]
|
|
}
|