mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-09 20:12:26 +10:00
32 lines
679 B
JSON
32 lines
679 B
JSON
{
|
|
"extends": ["plugin:@nx/react", "../../.eslintrc.json"],
|
|
"ignorePatterns": ["!**/*"],
|
|
"overrides": [
|
|
{
|
|
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
|
|
"extends": [
|
|
"plugin:tailwindcss/recommended",
|
|
"plugin:@tanstack/eslint-plugin-query/recommended"
|
|
],
|
|
"settings": {
|
|
"tailwindcss": {
|
|
"callees": ["cn", "clsx", "cva"],
|
|
"config": "tailwind.config.js"
|
|
}
|
|
},
|
|
"rules": {
|
|
// react-hooks
|
|
"react-hooks/exhaustive-deps": "off"
|
|
}
|
|
},
|
|
{
|
|
"files": ["*.ts", "*.tsx"],
|
|
"rules": {}
|
|
},
|
|
{
|
|
"files": ["*.js", "*.jsx"],
|
|
"rules": {}
|
|
}
|
|
]
|
|
}
|