14 lines
385 B
JSON
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": "^_" }
|
|
]
|
|
}
|
|
}
|