@nnecec/biome-config
Features
- Enable
organizeImports. - Enable recmended rules.
- No semicolons (
"semicolons": "asNeeded"). - avoid parentheses around a sole arrow function parameter.(
"arrowParentheses": "asNeeded") - Single quote.(
"quoteStyle": "single","jsxQuoteStyle": "double") - 2 space indent width.(
"indentStyle": "space","indentWidth": 2)
Usage
sh
$ npm add -D @nnecec/biome-configsh
$ pnpm add -D @nnecec/biome-configsh
$ bun add -D @nnecec/biome-configConfiguration
Then create a configuration file named biome.json at your project's root path, choose one way to fill your configuration:
json
{
"extends": ["@nnecec/biome-config"]
}