oxc/no-redundant-constructor-init Correctness
What it does
Prevents redundant initialization of class members within a constructor.
Why is this bad?
Arguments marked as public
within a constructor are automatically initialized. Providing an explicit initialization is redundant and can be removed.
Examples
Examples of incorrect code for this rule:
js
class Foo {
constructor(public name: unknown) {
this.name = name;
}
}
Examples of correct code for this rule:
js
class Foo {
constructor(public name: unknown) {}
}
How to use
To enable this rule in the CLI or using the config file, you can use:
bash
oxlint --deny oxc/no-redundant-constructor-init
json
{
"rules": {
"oxc/no-redundant-constructor-init": "error"
}
}