diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-11-08 23:27:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-08 23:27:36 +0100 |
commit | 6743383d2e89939ae9c12d8de027f05ae4d37518 (patch) | |
tree | 1ae255e50969312f9a688ef690bda9eedabb8b12 /docs/tools/linter.md | |
parent | b244766f9d31183ee10d37db37c30ca49a3c8aa2 (diff) |
upgrade: deno_doc, deno_lint, dprint, swc (#8292)
Diffstat (limited to 'docs/tools/linter.md')
-rw-r--r-- | docs/tools/linter.md | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/docs/tools/linter.md b/docs/tools/linter.md index d3daabeab..15e6b7ba5 100644 --- a/docs/tools/linter.md +++ b/docs/tools/linter.md @@ -145,17 +145,3 @@ function bar(a: any) { // ... } ``` - -To provide some compatibility with ESLint `deno lint` also supports -`// eslint-disable-next-line` directive. Just like with `// deno-lint-ignore`, -it's required to specify the ignored rule name: - -```ts -// eslint-disable-next-line no-empty -while (true) {} - -// deno-lint-ignore no-explicit-any -function bar(a: any) { - // ... -} -``` |