Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Class member mutation in constructors is seen as initialization when it may not be. [no-object-mutation] #126

Open
RebeccaStevens opened this issue Mar 12, 2019 · 0 comments
Labels

Comments

@RebeccaStevens
Copy link
Collaborator

Within constructors, class member initialization and mutation seem to be treated as the same thing. Only initialization should be allowed.

class Foo {
    readonly bar = 1;
    readonly baz: string;
    constructor() {
        this.bar = 2;   // Should violate rule.
        this.baz = "hello";
        this.baz = "world";  // Should violate rule.
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant