swc_cli_impl/commands/
lint.rs1use clap::Parser;
2use swc_core::trace_macro::swc_trace;
3
4#[derive(Parser)]
5pub struct LintOptions {}
6
7#[swc_trace]
8impl super::CommandRunner for LintOptions {
9 fn execute(&self) -> anyhow::Result<()> {
10 unimplemented!("Lint command is not yet implemented")
11 }
12}