File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -65,9 +65,9 @@ function startSubprocess(
65
65
let options : ForkOptions = {
66
66
stdio : 'pipe' ,
67
67
env : {
68
- ELECTRON_RUN_AS_NODE : '1' ,
69
- ATOM_SHELL_INTERNAL_RUN_AS_NODE : '1' ,
70
- WORKSPACE_FOLDER : workspaceFolder ,
68
+ ELECTRON_RUN_AS_NODE : '1' , // eslint-disable-line @typescript-eslint/naming-convention
69
+ ATOM_SHELL_INTERNAL_RUN_AS_NODE : '1' , // eslint-disable-line @typescript-eslint/naming-convention
70
+ WORKSPACE_FOLDER : workspaceFolder , // eslint-disable-line @typescript-eslint/naming-convention
71
71
...process . env
72
72
} ,
73
73
cwd : workspaceFolder
Original file line number Diff line number Diff line change @@ -193,7 +193,7 @@ export function languageActivate(context: vscode.ExtensionContext) {
193
193
}
194
194
} , ( e ) => {
195
195
try {
196
- const oldChialispJson = { include_paths :[ ] } ;
196
+ const oldChialispJson = { include_paths :[ ] } ; // eslint-disable-line @typescript-eslint/naming-convention
197
197
return treatAndWriteBackChialispJson ( oldChialispJson ) ;
198
198
} catch ( e ) {
199
199
vscode . window . showErrorMessage ( "Could not formulate chialisp.json" ) ;
You can’t perform that action at this time.
0 commit comments