Files
memegoat/backend/biome.json
Avnyr 5665fcd98f
All checks were successful
Backend Tests / test (push) Successful in 9m40s
Lint / lint (push) Successful in 9m42s
Exclude .migrations from file includes in biome.json configuration
2026-01-14 20:20:14 +01:00

45 lines
743 B
JSON

{
"$schema": "https://biomejs.dev/schemas/2.3.11/schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true
},
"files": {
"ignoreUnknown": true,
"includes": ["**", "!node_modules", "!dist", "!build", "!.migrations"]
},
"formatter": {
"enabled": true,
"indentStyle": "tab",
"indentWidth": 1
},
"javascript": {
"parser": {
"unsafeParameterDecoratorsEnabled": true
}
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"suspicious": {
"noUnknownAtRules": "off"
},
"style": {
"useImportType": "off"
},
"correctness": {
"useHookAtTopLevel": "off"
}
}
},
"assist": {
"actions": {
"source": {
"organizeImports": "on"
}
}
}
}