prism/biome.json
2026-01-15 18:43:46 -08:00

54 lines
971 B
JSON

{
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true,
"defaultBranch": "main"
},
"files": {
"ignoreUnknown": true
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 100
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"complexity": {
"useArrowFunction": "warn"
},
"style": {
"useShorthandFunctionType": "warn"
}
}
},
"javascript": {
"formatter": {
"quoteStyle": "single",
"trailingCommas": "all",
"semicolons": "always"
}
},
"html": {
"parser": {
"interpolation": true
}
},
"overrides": [
{
"includes": ["scripts/**/*"],
"linter": {
"rules": {
"suspicious": {
"noConsole": "off"
}
}
}
}
]
}