We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9716dd commit 20068dbCopy full SHA for 20068db
lintcheck/src/config.rs
@@ -4,7 +4,7 @@ use std::path::PathBuf;
4
5
#[derive(Parser, Clone, Debug)]
6
#[command(args_conflicts_with_subcommands = true)]
7
-pub(crate) struct LintcheckConfig {
+pub(crate) struct LintCheckConfig {
8
/// Number of threads to use (default: all unless --fix or --recursive)
9
#[clap(
10
long = "jobs",
@@ -87,9 +87,9 @@ impl OutputFormat {
87
}
88
89
90
-impl LintcheckConfig {
+impl LintCheckConfig {
91
pub fn new() -> Self {
92
- let mut config = LintcheckConfig::parse();
+ let mut config = LintCheckConfig::parse();
93
94
// for the path where we save the lint results, get the filename without extension (so for
95
// wasd.toml, use "wasd"...)
0 commit comments