Skip to content

Instantly share code, notes, and snippets.

@sametcn99
Created October 19, 2025 21:56
Show Gist options
  • Select an option

  • Save sametcn99/048b17fe4f17c5f41f01e91dd7c8ee00 to your computer and use it in GitHub Desktop.

Select an option

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.
{
"$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