Skip to content

Commit 8befafe

Browse files
authored
chore: update ESLint configuration with Prettier support
Update ESLint configuration to work with Prettier. This configuration: - Extends Next.js core web vitals configuration - Integrates with Prettier for formatting - Disables unnecessary React rules for Next.js - Avoids conflicts between ESLint and Prettier Helps maintain consistent code quality and formatting.
1 parent aed0749 commit 8befafe

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.eslintrc.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"extends": ["next/core-web-vitals", "prettier"],
3+
"rules": {
4+
"react/react-in-jsx-scope": "off",
5+
"react/prop-types": "off"
6+
}
7+
}

0 commit comments

Comments
 (0)