diff options
author | Yusuke Tanaka <yusuktan@maguro.dev> | 2020-12-03 01:06:25 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-02 17:06:25 +0100 |
commit | e174479d2288be6ef8caac87d1e945c91a3c02d7 (patch) | |
tree | 9c3a30e2c09f4e21b77b05eacf7247962028e57c /docs/tools | |
parent | f49d9556015a7d4c04e9db3f0c85d4399f6125ff (diff) |
docs(lint): Update available rules & add link to doc site (#8590)
Diffstat (limited to 'docs/tools')
-rw-r--r-- | docs/tools/linter.md | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/docs/tools/linter.md b/docs/tools/linter.md index 15e6b7ba5..709e0d644 100644 --- a/docs/tools/linter.md +++ b/docs/tools/linter.md @@ -24,6 +24,7 @@ For more detail, run `deno lint --help`. - `ban-ts-comment` - `ban-types` - `ban-untagged-ignore` +- `camelcase` - `constructor-super` - `for-direction` - `getter-return` @@ -80,12 +81,16 @@ For more detail, run `deno lint --help`. - `no-unused-labels` - `no-with` - `prefer-as-const` +- `prefer-const` - `prefer-namespace-keyword` +- `require-await` - `require-yield` -- `triple-slash-reference` - `use-isnan` - `valid-typeof` +For more detail about each rule, visit +[the deno_lint rule documentation](https://lint.deno.land). + ### Ignore directives #### Files |