Created
October 19, 2025 21:56
-
-
Save sametcn99/048b17fe4f17c5f41f01e91dd7c8ee00 to your computer and use it in GitHub Desktop.
A clean and minimal Biome configuration for Next.js applications. Features tab indentation, double quotes for JavaScript strings, recommended linting rules, and automatic import organization. Includes Git integration and processes all file types for comprehensive code quality checks.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "./node_modules/@biomejs/biome/configuration_schema.json", | |
| "vcs": { | |
| "enabled": true, | |
| "clientKind": "git", | |
| "useIgnoreFile": true | |
| }, | |
| "files": { | |
| "ignoreUnknown": false | |
| }, | |
| "formatter": { | |
| "enabled": true, | |
| "indentStyle": "tab" | |
| }, | |
| "linter": { | |
| "enabled": true, | |
| "rules": { | |
| "recommended": true | |
| } | |
| }, | |
| "javascript": { | |
| "formatter": { | |
| "quoteStyle": "double" | |
| } | |
| }, | |
| "assist": { | |
| "enabled": true, | |
| "actions": { | |
| "source": { | |
| "organizeImports": "on" | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment