https://github.com/angular/angular
Revision b5ab7aff433a67cddaa55e621d17b1a1b07b57c2 authored by Paul Gschwendtner on 07 July 2021, 17:58:22 UTC, committed by Andrew Kushnir on 12 July 2021, 20:11:17 UTC
In combination with the TS `noImplicitOverride` compatibility changes,
we also want to follow the best-practice of adding `override` to
members which are implemented as part of abstract classes. This
commit fixes all instances which will be flagged as part of the
custom `no-implicit-override-abstract` TSLint rule.

PR Close #42512
1 parent 04642e7
Raw File
Tip revision: b5ab7aff433a67cddaa55e621d17b1a1b07b57c2 authored by Paul Gschwendtner on 07 July 2021, 17:58:22 UTC
refactor: add override keyword to members implementing abstract declarations (#42512)
Tip revision: b5ab7af
tsconfig-tslint.json
{
  "compilerOptions": {
    "allowJs": true
  },
  "include": [
    "dev-infra/**/*",
    "packages/**/*",
    "modules/**/*",
    "tools/**/*",
    "scripts/**/*"
  ]
}
back to top