We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am working on nextjs project with jsx and typescript and I have encountered this issue "Unknown property 'border' found".
Code exampe:
<table border={1}> ... </table>
My eslint config looks like this:
{ "env": { "browser": true, "es2021": true }, "extends": [ "eslint:recommended", "plugin:react/recommended", "plugin:@typescript-eslint/recommended", "next/core-web-vitals" ], "parser": "@typescript-eslint/parser", "parserOptions": { "ecmaFeatures": { "jsx": true }, "ecmaVersion": "latest", "sourceType": "module" }, "plugins": ["react", "@typescript-eslint"], "rules": {} }
The text was updated successfully, but these errors were encountered:
e8356ad
ljharb
No branches or pull requests
I am working on nextjs project with jsx and typescript and I have encountered this issue "Unknown property 'border' found".
Code exampe:
My eslint config looks like this:
The text was updated successfully, but these errors were encountered: