diff options
-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 |