diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2019-03-10 04:30:38 +1100 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-03-09 12:30:38 -0500 |
commit | 034e2cc02829c9244b32232074c7a48af827a2fb (patch) | |
tree | bade01606a1ee076c1f753ce99c97ddb1e4edf30 /js/assets.ts | |
parent | 8c7a12d1b258f0ef5ab27f49c424331d43e8d97f (diff) |
Migrate from tslint to eslint for linting (#1905)
Diffstat (limited to 'js/assets.ts')
-rw-r--r-- | js/assets.ts | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/js/assets.ts b/js/assets.ts index 18bf97548..5f1790646 100644 --- a/js/assets.ts +++ b/js/assets.ts @@ -1,10 +1,9 @@ // Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. -// tslint:disable-next-line:no-reference +// eslint-disable-next-line @typescript-eslint/no-triple-slash-reference /// <reference path="./plugins.d.ts" /> // There is a rollup plugin that will inline any module ending with `!string` -// tslint:disable:max-line-length // Generated default library import libDts from "gen/lib/lib.deno_runtime.d.ts!string"; @@ -39,7 +38,6 @@ import libEsnextBigintDts from "/third_party/node_modules/typescript/lib/lib.esn import libEsnextDts from "/third_party/node_modules/typescript/lib/lib.esnext.d.ts!string"; import libEsnextIntlDts from "/third_party/node_modules/typescript/lib/lib.esnext.intl.d.ts!string"; import libEsnextSymbolDts from "/third_party/node_modules/typescript/lib/lib.esnext.symbol.d.ts!string"; -// tslint:enable:max-line-length // @internal export const assetSourceCode: { [key: string]: string } = { |