Skip to content

Commit

Permalink
disable enableExperimentalFeatures by default
Browse files Browse the repository at this point in the history
  • Loading branch information
DetachHead committed Oct 30, 2024
1 parent 6978ffc commit d389719
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/pyright-internal/src/common/configOptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -953,7 +953,7 @@ export const getRecommendedDiagnosticRuleSet = (): DiagnosticRuleSet => ({
strictDictionaryInference: true,
analyzeUnannotatedFunctions: true,
strictParameterNoneValue: true,
enableExperimentalFeatures: true,
enableExperimentalFeatures: false,
enableTypeIgnoreComments: false,
enableReachabilityAnalysis: true,
deprecateTypingAliases: true,
Expand Down Expand Up @@ -1063,7 +1063,7 @@ export const getAllDiagnosticRuleSet = (): DiagnosticRuleSet => ({
strictDictionaryInference: true,
analyzeUnannotatedFunctions: true,
strictParameterNoneValue: true,
enableExperimentalFeatures: true,
enableExperimentalFeatures: false,
enableTypeIgnoreComments: false,
enableReachabilityAnalysis: true,
deprecateTypingAliases: true,
Expand Down

0 comments on commit d389719

Please sign in to comment.