@mkobayashime/shared-config
v2.0.0
Published
## Biome
Readme
@mkobayashime/shared-config
Biome
bun add -d @mkobayashime/shared-config @biomejs/biome
pnpm add -D @mkobayashime/shared-config @biomejs/biomein biome.json
{
"extends": [
"@mkobayashime/shared-config/biome"
]
}ESLint
bun add -d @mkobayashime/shared-config eslint typescript-eslint
pnpm add -D @mkobayashime/shared-config eslint typescript-eslinttypescript-with-biome
import { typescriptWithBiome } from "@mkobayashime/shared-config/eslint";
export default [
...typescriptWithBiome,
{
languageOptions: {
parserOptions: {
project: "./tsconfig.json",
},
},
},
];