Files
nixos/config.oxlintrc.json
Matthew Bessette 776382727c bump
2026-03-12 22:41:26 -04:00

34 lines
669 B
JSON

{
"$schema": "https://raw.githubusercontent.com/oxc-project/oxc/refs/heads/main/npm/oxlint/configuration_schema.json",
"plugins": [
"eslint",
"import",
"node",
"oxc",
"promise",
"typescript",
"unicorn"
],
"categories": {
"correctness": "warn",
"suspicious": "error",
"perf": "error"
},
"rules": {
"unicorn/require-module-specifiers": "off",
"no-await-in-loop": "warn",
"typescript/no-extraneous-class": ["warn", { "allowWithDecorator": true }],
"eslint/no-restricted-imports": [
"error",
{
"paths": [
{
"name": "zod",
"message": "Use `zod/v4` (legacy `zod` import is disallowed)."
}
]
}
]
}
}