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 928f994 commit b396106Copy full SHA for b396106
tasks/linter_codegen/src/main.rs
@@ -72,7 +72,9 @@ pub fn generate_rule_runner_impls() -> io::Result<()> {
72
Some("run") => "RuleRunFunctionsImplemented::Run".to_string(),
73
Some("run_on_symbol") => "RuleRunFunctionsImplemented::RunOnSymbol".to_string(),
74
Some("run_once") => "RuleRunFunctionsImplemented::RunOnce".to_string(),
75
- Some("run_on_jest_node") => "RuleRunFunctionsImplemented::RunOnJestNode".to_string(),
+ Some("run_on_jest_node") => {
76
+ "RuleRunFunctionsImplemented::RunOnJestNode".to_string()
77
+ }
78
_ => "RuleRunFunctionsImplemented::Unknown".to_string(),
79
}
80
} else {
0 commit comments