MolCI/server/biome.json
Olivier 'reivilibre bff741c7df Disable 'noNonNullAssertion' lint
Signed-off-by: Olivier 'reivilibre <git.contact@librepush.net>
2025-09-30 22:44:57 +01:00

39 lines
601 B
JSON

{
"$schema": "https://biomejs.dev/schemas/2.2.3/schema.json",
"vcs": {
"enabled": false,
"clientKind": "git",
"useIgnoreFile": false
},
"files": {
"ignoreUnknown": false
},
"formatter": {
"enabled": true,
"indentStyle": "tab"
},
"linter": {
"enabled": true,
"includes": ["src/**", "!src/types/openapi.d.ts"],
"rules": {
"recommended": true,
"style": {
"noNonNullAssertion": "off"
}
}
},
"javascript": {
"formatter": {
"quoteStyle": "double"
}
},
"assist": {
"enabled": true,
"actions": {
"source": {
"organizeImports": "on"
}
}
}
}