diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2021-06-05 15:57:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-05 15:57:31 +0200 |
commit | 1d070f3d47f456099a46462d5d79175c26e3c21d (patch) | |
tree | b2939ad0bcda5978b45178da45dabe5ad91acec9 /cli/flags.rs | |
parent | cf351f77c2c05255c211196957b551db871f2699 (diff) |
feat: make 'deno lint' stable (#10851)
Diffstat (limited to 'cli/flags.rs')
-rw-r--r-- | cli/flags.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/flags.rs b/cli/flags.rs index 745aa7013..295bdb317 100644 --- a/cli/flags.rs +++ b/cli/flags.rs @@ -880,9 +880,9 @@ https://deno.land/manual/getting_started/setup_your_environment#editors-and-ides fn lint_subcommand<'a, 'b>() -> App<'a, 'b> { SubCommand::with_name("lint") - .about("UNSTABLE: Lint source files") + .about("Lint source files") .long_about( - "UNSTABLE: Lint JavaScript/TypeScript source code. + "Lint JavaScript/TypeScript source code. deno lint deno lint myfile1.ts myfile2.js |