@erin-living/biome
v0.0.5
Published
Biome Configuration of Erin
Keywords
Readme
Biome Configuration of Erin
Installation
pnpm add -D @erin-living/biomeUsage
Create biome.json at root folder
{
"$schema": "https://biomejs.dev/schemas/2.2.2/schema.json",
"extends": ["@erin-living/biome/config"]
}VSCode configuration
{
"editor.codeActionsOnSave": {
"source.organizeImports.biome": "explicit"
}
}Note
For import import "packageName", we should sort it manually as Biome does not support it at the moment, and should add empty line for it as separated group.
import ":PACKAGE:"
import { A } from ":PACKAGE:"
import ":ALIAS:"
import { B } from ":ALIAS:"
import ":PATH:"
import { C } from ":PATH:"