diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-11-03 16:19:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-03 16:19:29 +0100 |
commit | 8e914be7420715620cad74fbb020c5e87ac875a2 (patch) | |
tree | 2fefc0111f85533de2bd24e54f70c6c1241e3d3b /std/node/tests | |
parent | e736d0f60f6cdf38e2d317ee08a7125de9e57d69 (diff) |
build: migrate to dlint (#8176)
This commit migrates repository from using "eslint"
to "dlint" for linting JavaScript code.
Diffstat (limited to 'std/node/tests')
-rw-r--r-- | std/node/tests/cjs/cjs_a.js | 2 | ||||
-rw-r--r-- | std/node/tests/cjs/cjs_builtin.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/std/node/tests/cjs/cjs_a.js b/std/node/tests/cjs/cjs_a.js index 6295f3a14..b2dae2b6b 100644 --- a/std/node/tests/cjs/cjs_a.js +++ b/std/node/tests/cjs/cjs_a.js @@ -1,5 +1,5 @@ // deno-lint-ignore-file no-undef -/* eslint-disable */ +// deno-lint-ignore-file const { helloB } = require("./cjs_b.js"); const C = require("./subdir/cjs_c"); const leftPad = require("left-pad"); diff --git a/std/node/tests/cjs/cjs_builtin.js b/std/node/tests/cjs/cjs_builtin.js index 3eae5dc59..3a971f605 100644 --- a/std/node/tests/cjs/cjs_builtin.js +++ b/std/node/tests/cjs/cjs_builtin.js @@ -1,5 +1,5 @@ // deno-lint-ignore-file no-undef -/* eslint-disable */ +// deno-lint-ignore-file const fs = require("fs"); const util = require("util"); const path = require("path"); |