Skip to content

Commit c04c001

Browse files
Merge pull request #135 from Chia-Network/EL.lint-fix
ignore a couple linting items
2 parents ac981f5 + 2e860dd commit c04c001

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/dbg.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ function startSubprocess(
6565
let options: ForkOptions = {
6666
stdio: 'pipe',
6767
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
7171
...process.env
7272
},
7373
cwd: workspaceFolder

src/lsp.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ export function languageActivate(context: vscode.ExtensionContext) {
193193
}
194194
}, (e) => {
195195
try {
196-
const oldChialispJson = {include_paths:[]};
196+
const oldChialispJson = {include_paths:[]}; // eslint-disable-line @typescript-eslint/naming-convention
197197
return treatAndWriteBackChialispJson(oldChialispJson);
198198
} catch (e) {
199199
vscode.window.showErrorMessage("Could not formulate chialisp.json");

0 commit comments

Comments
 (0)