chore: fix eslint issues (#9017)

This commit is contained in:
Martin Guillon
2020-11-11 17:46:36 +01:00
committed by GitHub
parent 05faa867d0
commit c1f231d88e
171 changed files with 1607 additions and 1550 deletions

View File

@ -1,6 +1,6 @@
import { knownFolders } from '../file-system';
export let debug = true;
export const debug = true;
let applicationRootPath: string;
function ensureAppRootPath() {
@ -15,7 +15,7 @@ export class Source {
private _line: number;
private _column: number;
private static _source: symbol = Symbol('source');
private static _source = Symbol('source');
constructor(uri: string, line: number, column: number) {
ensureAppRootPath();