{ "root": true, "extends": [ "conventions", "next/core-web-vitals", "plugin:tailwindcss/recommended", "prettier" ], "plugins": ["prettier"], "parserOptions": { "project": "./tsconfig.json" }, "settings": { "tailwindcss": { "callees": ["classNames"] }, "react": { "version": "detect" } }, "rules": { "prettier/prettier": "error", "react/self-closing-comp": [ "error", { "component": true, "html": true } ], "react/void-dom-elements-no-children": "error", "react/jsx-boolean-value": "error" }, "overrides": [ { "files": ["*.ts", "*.tsx"], "parser": "@typescript-eslint/parser" } ] }