1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"plugins": ["unicorn", "typescript", "oxc"],
"rules": {
"no-unused-expressions": "off",
"no-unused-vars": ["warn", { "argsIgnorePattern": "^_" }],
"typescript/unbound-method": "off",
"typescript/no-floating-promises": "off",
"typescript/no-implied-eval": "off",
"typescript/restrict-template-expressions": "off",
"typescript/no-base-to-string": "off",
"typescript/no-redundant-type-constituents": "off",
"typescript/no-misused-spread": "off"
},
"ignorePatterns": ["docs/**"]
}
starting shell…