Changed "reportMissingSuperCall" to be off by default in strict mode.

This commit is contained in:
Eric Traut 2022-01-14 14:13:49 -08:00
parent 6f0e07a0e5
commit 163ef21c3c
2 changed files with 2 additions and 2 deletions

View File

@ -310,7 +310,7 @@ The following table lists the default severity levels for each diagnostic rule w
| reportIncompatibleVariableOverride | "none" | "none" | "error" |
| reportInconsistentConstructor | "none" | "none" | "error" |
| reportOverlappingOverload | "none" | "none" | "error" |
| reportMissingSuperCall | "none" | "none" | "error" |
| reportMissingSuperCall | "none" | "none" | "none" |
| reportUninitializedInstanceVariable | "none" | "none" | "none" |
| reportInvalidStringEscapeSequence | "none" | "warning" | "error" |
| reportUnknownParameterType | "none" | "none" | "error" |

View File

@ -561,7 +561,7 @@ export function getStrictDiagnosticRuleSet(): DiagnosticRuleSet {
reportIncompatibleVariableOverride: 'error',
reportInconsistentConstructor: 'error',
reportOverlappingOverload: 'error',
reportMissingSuperCall: 'error',
reportMissingSuperCall: 'none',
reportUninitializedInstanceVariable: 'none',
reportInvalidStringEscapeSequence: 'error',
reportUnknownParameterType: 'error',