denoland / deno_lint

Blazing fast linter for JavaScript and TypeScript written in Rust
https://lint.deno.land/
MIT License
1.53k stars 172 forks source link

`deno lint --fix` - support unused imports, vars to lets, and lets to consts #1286

Open fbatiga opened 6 months ago

fbatiga commented 6 months ago

Following the addition of --fix to deno and as per @dsherret i'm opening a ticket to see some basic rules implemented.


    removing unused imports
    changing vars to lets
    changing lets to consts if they aren't reassigned

https://github.com/denoland/deno/issues/12681