diff options
author | Yusuke Tanaka <yusuktan@maguro.dev> | 2020-09-09 23:45:31 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-09 16:45:31 +0200 |
commit | 857f9b32e02c876e9cce6e82f82fb6ed95248646 (patch) | |
tree | 85bcb5f2215228c932690fd229e3a52d01335b85 /docs/tools | |
parent | 1fcbf9cb8a2aa330ddc95c1481976b9e06ca994c (diff) |
feat(fmt, lint): show number of checked files (#7312)
Diffstat (limited to 'docs/tools')
-rw-r--r-- | docs/tools/linter.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/tools/linter.md b/docs/tools/linter.md index 9f3400682..f5af1543b 100644 --- a/docs/tools/linter.md +++ b/docs/tools/linter.md @@ -52,6 +52,7 @@ For more detail, run `deno lint --help`. - `no-extra-non-null-assertion` - `no-extra-semi` - `no-func-assign` +- `no-inner-declarations` - `no-inferrable-types` - `no-invalid-regexp` - `no-irregular-whitespace` @@ -59,7 +60,7 @@ For more detail, run `deno lint --help`. - `no-mixed-spaces-and-tabs` - `no-namespace` - `no-new-symbol` -- `no-obj-call` +- `no-obj-calls` - `no-octal` - `no-prototype-builtins` - `no-regex-spaces` @@ -68,7 +69,7 @@ For more detail, run `deno lint --help`. - `no-shadow-restricted-names` - `no-this-alias` - `no-this-before-super` -- `no-unexpected-multiline` +- `no-unreachable` - `no-unsafe-finally` - `no-unsafe-negation` - `no-unused-labels` |