File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change 1+ /* eslint-disable @typescript-eslint/naming-convention */
12import { spawnSync , SpawnSyncOptionsWithStringEncoding , SpawnSyncReturns } from "child_process" ;
23import { GGShieldConfiguration } from "./ggshield-configuration" ;
34import { workspace } from "vscode" ;
@@ -18,18 +19,15 @@ export function runGGShieldCommand(
1819 let env : {
1920 GITGUARDIAN_API_URL : string ;
2021 GG_USER_AGENT : string ;
21- GITGUARDIAN_DONT_LOAD_ENV : string ;
2222 GITGUARDIAN_API_KEY ?: string ;
2323 } = {
2424 GITGUARDIAN_API_URL : apiUrl ,
2525 GG_USER_AGENT : "gitguardian-vscode" ,
26- GITGUARDIAN_DONT_LOAD_ENV : "true" ,
2726 } ;
2827
2928 if ( apiKey ) {
3029 env = {
3130 ...env ,
32- // eslint-disable-next-line @typescript-eslint/naming-convention
3331 GITGUARDIAN_API_KEY : apiKey ,
3432 } ;
3533 }
You can’t perform that action at this time.
0 commit comments