From 8e914be7420715620cad74fbb020c5e87ac875a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Tue, 3 Nov 2020 16:19:29 +0100 Subject: build: migrate to dlint (#8176) This commit migrates repository from using "eslint" to "dlint" for linting JavaScript code. --- cli/tests/subdir/more_decorators.ts | 2 +- cli/tests/subdir/throws.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'cli/tests/subdir') diff --git a/cli/tests/subdir/more_decorators.ts b/cli/tests/subdir/more_decorators.ts index a67ae3fd6..674705d56 100644 --- a/cli/tests/subdir/more_decorators.ts +++ b/cli/tests/subdir/more_decorators.ts @@ -1,4 +1,4 @@ -/* eslint-disable */ +// deno-lint-ignore-file function a() { console.log("a(): evaluated"); return ( diff --git a/cli/tests/subdir/throws.js b/cli/tests/subdir/throws.js index 91ce4628e..abdf29156 100644 --- a/cli/tests/subdir/throws.js +++ b/cli/tests/subdir/throws.js @@ -1,4 +1,4 @@ -/* eslint-disable */ +// deno-lint-ignore-file export function boo() { console.log("Boo!"); } -- cgit v1.2.3