Add missing strictSetInference option to table (#2263)

The `strictSetInference` row was missing from the Diagnostic Rule Defaults table.
This commit is contained in:
Kyle Kovacs 2021-09-03 15:44:28 -07:00 committed by GitHub
parent 66456a4d7d
commit ad0e8acf14
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -266,6 +266,7 @@ The following table lists the default severity levels for each diagnostic rule w
| :---------------------------------------- | :--------- | :--------- | :--------- |
| strictListInference | false | false | true |
| strictDictionaryInference | false | false | true |
| strictSetInference | false | false | true |
| strictParameterNoneValue | false | false | true |
| enableTypeIgnoreComments | true | true | true |
| reportGeneralTypeIssues | "none" | "error" | "error" |
@ -297,7 +298,7 @@ The following table lists the default severity levels for each diagnostic rule w
| reportIncompatibleMethodOverride | "none" | "none" | "error" |
| reportIncompatibleVariableOverride | "none" | "none" | "error" |
| reportOverlappingOverload | "none" | "none" | "error" |
| reportUninitializedInstanceVariable | "none" | "none" | "none" |
| reportUninitializedInstanceVariable | "none" | "none" | "none" |
| reportInvalidStringEscapeSequence | "none" | "warning" | "error" |
| reportUnknownParameterType | "none" | "none" | "error" |
| reportUnknownArgumentType | "none" | "none" | "error" |