diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-06-10 23:29:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-10 23:29:48 +0200 |
commit | e4e332abbbe0dbdb44305a261f9965ba89e7767b (patch) | |
tree | 6bdbeb2c6d1039adf34f7366e467e105e91ab63d /cli/tests/lint/file1.js | |
parent | e53a1b14968099df06624a4dc4d4ab810d1ce443 (diff) |
feat(lint): use default globs, upgrade to v0.1.9 (#6222)
This commit:
* added default file globs so "deno lint" can be run
without arguments (just like "deno fmt")
* added test for globs in "deno lint"
* upgrade "deno_lint" crate to v0.1.9
Diffstat (limited to 'cli/tests/lint/file1.js')
-rw-r--r-- | cli/tests/lint/file1.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cli/tests/lint/file1.js b/cli/tests/lint/file1.js index d74b6f47a..737f26818 100644 --- a/cli/tests/lint/file1.js +++ b/cli/tests/lint/file1.js @@ -1,3 +1,2 @@ -var a = 1, - b = 2, - c = 3; +// deno-lint-ignore +while (false) {} |