biome.json•679 B
{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"formatter": {
"enabled": true,
"indentStyle": "space",
"lineWidth": 120
},
"javascript": {
"formatter": {
"quoteStyle": "single",
"semicolons": "asNeeded",
"trailingCommas": "all"
}
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"suspicious": {
"noExplicitAny": "warn"
},
"style": {
"noNonNullAssertion": "off"
}
}
},
"files": {
"ignoreUnknown": false,
"ignore": ["node_modules", "dist", "package.json", "package-lock.json"]
},
"organizeImports": {
"enabled": true
}
}