3.15.12.0.3interface PollLinkOptions {
account: { domain: string },
poll: { uid: string },
emailToken: string
};
with tslint.json configuration:
{
"rules": {
"semicolon": [
true,
"always"
]
}
(semicolon) routes/links.ts[2, 30]: Missing semicolon
(semicolon) routes/links.ts[3, 24]: Missing semicolon
(semicolon) routes/links.ts[4, 20]: Missing semicolon
Should not be treated as an error.
@nonplus was having the same issue and stumbled across the tslint option ignore-interfaces, which would give you a configuration of
{
"rules": {
"semicolon": [
true,
"always",
"ignore-interfaces"
]
}
}
Picked it up from here https://palantir.github.io/tslint/rules/semicolon/
Awesome, looks like this is fixed! 馃帀
Most helpful comment
@nonplus was having the same issue and stumbled across the tslint option
ignore-interfaces, which would give you a configuration ofPicked it up from here https://palantir.github.io/tslint/rules/semicolon/