Skip to content

Commit

Permalink
off means off (no means no!!!!!!!!)
Browse files Browse the repository at this point in the history
  • Loading branch information
DetachHead committed Jan 25, 2024
1 parent d362469 commit 516079c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/pyright-internal/src/common/configOptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -512,18 +512,18 @@ export function getOffDiagnosticRuleSet(): DiagnosticRuleSet {
strictListInference: false,
strictSetInference: false,
strictDictionaryInference: false,
analyzeUnannotatedFunctions: true,
strictParameterNoneValue: true,
analyzeUnannotatedFunctions: true, // required for completions
strictParameterNoneValue: false,
enableExperimentalFeatures: false,
enableTypeIgnoreComments: true,
deprecateTypingAliases: false,
disableBytesTypePromotions: false,
reportGeneralTypeIssues: 'none',
reportPropertyTypeMismatch: 'none',
reportFunctionMemberAccess: 'none',
reportMissingImports: 'warning',
reportMissingModuleSource: 'warning',
reportInvalidTypeForm: 'warning',
reportMissingImports: 'none',
reportMissingModuleSource: 'none',
reportInvalidTypeForm: 'none',
reportMissingTypeStubs: 'none',
reportImportCycles: 'none',
reportUnusedImport: 'none',
Expand Down Expand Up @@ -586,7 +586,7 @@ export function getOffDiagnosticRuleSet(): DiagnosticRuleSet {
reportSelfClsParameterName: 'none',
reportImplicitStringConcatenation: 'none',
reportUnboundVariable: 'none',
reportUndefinedVariable: 'warning',
reportUndefinedVariable: 'none',
reportInvalidStubStatement: 'none',
reportIncompleteStub: 'none',
reportUnsupportedDunderAll: 'none',
Expand Down

0 comments on commit 516079c

Please sign in to comment.