mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-12 07:43:10 +10:00
21 lines
515 B
JSON
21 lines
515 B
JSON
{
|
|
"extends": ["../.eslintrc.json", "next/core-web-vitals", "plugin:tailwindcss/recommended"],
|
|
"ignorePatterns": [".next", "__ENV.js"],
|
|
"settings": {
|
|
"next": {
|
|
"rootDir": "client"
|
|
}
|
|
},
|
|
"rules": {
|
|
// Next.js
|
|
"@next/next/no-img-element": "off",
|
|
"@next/next/no-sync-scripts": "off",
|
|
|
|
// React Hooks
|
|
"react-hooks/exhaustive-deps": "off",
|
|
|
|
// Tailwind CSS
|
|
"tailwindcss/no-custom-classname": ["warn", { "whitelist": ["preview-mode", "printer-mode", "markdown"] }]
|
|
}
|
|
}
|