Files
dotfiles/front_end/.oxlintrc.json
T
2026-03-16 16:19:13 +01:00

14 lines
385 B
JSON

{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"plugins": ["react", "typescript", "import"],
"ignorePatterns": [],
"rules": {
"no-console": ["warn", { "allow": ["warn", "error"] }],
"typescript/consistent-type-imports": "warn",
"typescript/no-unused-vars": [
"warn",
{ "argsIgnorePattern": "^_", "varsIgnorePattern": "^_" }
]
}
}