Add the following rule at the end of your tslint.config. If it does already exist, change it :)
"variable-name": [
true,
"allow-leading-underscore"
]
Because the new tslint.config created e.g. by angular/cli does not allow underscores. Some IDEs like WebStorm or PHPStorm change the variable names automatically when creating getter/setters.