diff options
author | Luca Casonato <lucacasonato@yahoo.com> | 2020-09-13 15:17:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-13 15:17:25 +0200 |
commit | f06724f2388180c1d73eb0cc989f3499d84eb879 (patch) | |
tree | e1b2df4c22cae0d739d03f8e86aae6fe237a6fec /docs/tools/linter.md | |
parent | 755cfa98ebf4e3bd96e432d6a0b761aeb2e3c818 (diff) |
docs: manual updates for 1.4 features and changes (#7440)
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` |