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.
spellcheck:fix
1 parent 971feb6 commit c1ed2acCopy full SHA for c1ed2ac
src/tools/tidy/src/ext_tool_checks.rs
@@ -65,6 +65,13 @@ fn check_impl(
65
None => vec![],
66
};
67
68
+ if lint_args.contains(&"spellcheck:fix") {
69
+ return Err(Error::Generic(
70
+ "`spellcheck:fix` is no longer valid, use `--extra=check=spellcheck --bless`"
71
+ .to_string(),
72
+ ));
73
+ }
74
+
75
let python_all = lint_args.contains(&"py");
76
let python_lint = lint_args.contains(&"py:lint") || python_all;
77
let python_fmt = lint_args.contains(&"py:fmt") || python_all;
0 commit comments