{
    "$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
    "organizeImports": {
        "enabled": false
    },
    "linter": {
        "enabled": true,
        "rules": {
            "recommended": true,
            "suspicious": {
                "noConsoleLog": { "level": "error" }
            },
            "a11y": {
                "useKeyWithClickEvents": "off",
                "noSvgWithoutTitle": "off"
            },
            "style": {
                "noNonNullAssertion": "off",
                "useImportType": "off",
                "useNodejsImportProtocol": "error"
            },
            "correctness": {
                "noUnusedImports": "error",
                "useExhaustiveDependencies": "off"
            },
            "security": { "noDangerouslySetInnerHtml": "off" }
        }
    },
    "javascript": {
        "parser": {
            "unsafeParameterDecoratorsEnabled": true
        }
    }
}
