diff options
Diffstat (limited to 'docs/tools/linter.md')
-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 f5af1543b..62174a600 100644 --- a/docs/tools/linter.md +++ b/docs/tools/linter.md @@ -51,9 +51,12 @@ For more detail, run `deno lint --help`. - `no-extra-boolean-cast` - `no-extra-non-null-assertion` - `no-extra-semi` +- `no-fallthrough` - `no-func-assign` -- `no-inner-declarations` +- `no-global-assign` +- `no-import-assign` - `no-inferrable-types` +- `no-inner-declarations` - `no-invalid-regexp` - `no-irregular-whitespace` - `no-misused-new` @@ -63,12 +66,14 @@ For more detail, run `deno lint --help`. - `no-obj-calls` - `no-octal` - `no-prototype-builtins` +- `no-redeclare` - `no-regex-spaces` - `no-self-assign` - `no-setter-return` - `no-shadow-restricted-names` - `no-this-alias` - `no-this-before-super` +- `no-undef` - `no-unreachable` - `no-unsafe-finally` - `no-unsafe-negation` |