@@ -11,8 +11,8 @@ export interface FeatureEnablement {
1111export 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