Skip to content

Commit 6fe8656

Browse files
committed
Add new feature flag, remove Go extraction flag
1 parent f47c93c commit 6fe8656

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

lib/feature-flags.js

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/feature-flags.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/feature-flags.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ export interface FeatureEnablement {
1111
export enum Feature {
1212
BypassToolcacheEnabled = "bypass_toolcache_enabled",
1313
CliConfigFileEnabled = "cli_config_file_enabled",
14+
DisableKotlinEnabled = "disable_kotlin_enabled",
1415
FileBaselineInformationEnabled = "file_baseline_information_enabled",
15-
GolangExtractionReconciliationEnabled = "golang_extraction_reconciliation_enabled",
1616
MlPoweredQueriesEnabled = "ml_powered_queries_enabled",
1717
TrapCachingEnabled = "trap_caching_enabled",
1818
}
@@ -25,6 +25,10 @@ export const featureConfig: Record<
2525
envVar: "CODEQL_BYPASS_TOOLCACHE",
2626
minimumVersion: undefined,
2727
},
28+
[Feature.DisableKotlinEnabled]: {
29+
envVar: "CODEQL_DISABLE_KOTLIN",
30+
minimumVersion: "2.11.4",
31+
},
2832
[Feature.CliConfigFileEnabled]: {
2933
envVar: "CODEQL_PASS_CONFIG_TO_CLI",
3034
minimumVersion: "2.11.1",
@@ -33,10 +37,6 @@ export const featureConfig: Record<
3337
envVar: "CODEQL_FILE_BASELINE_INFORMATION",
3438
minimumVersion: "2.11.3",
3539
},
36-
[Feature.GolangExtractionReconciliationEnabled]: {
37-
envVar: "CODEQL_GOLANG_EXTRACTION_RECONCILIATION",
38-
minimumVersion: undefined,
39-
},
4040
[Feature.MlPoweredQueriesEnabled]: {
4141
envVar: "CODEQL_ML_POWERED_QUERIES",
4242
minimumVersion: "2.7.5",

0 commit comments

Comments
 (0)