Biome
- Code Formatter + Linter
- Written in Rust, so it's fast
Example
json
{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"vcs": {
"enabled": true,
"defaultBranch": "main",
"clientKind": "git",
"useIgnoreFile": true
},
"formatter": {
"enabled": true,
"indentStyle": "space"
},
"javascript": {
"formatter": {
"quoteStyle": "single",
"arrowParentheses": "asNeeded",
"jsxQuoteStyle": "double",
"lineWidth": 80
}
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"suspicious": {
"noDuplicateFontNames": "off"
}
}
},
"organizeImports": {
"enabled": true
},
"files": {
"ignoreUnknown": true,
"ignore": [".vscode/**/*", "node_modules/**/*", "dist/**/*"]
}
}