leptos/leptos_hot_reload
martin frances 10c0a2de65
chore: cleared clippy warnings (#1190)
The change in indentation makes the PR hard to review

so I will discuss the change in conversational language

Two "if"'s checks were merged into one "if"

this

-        if let Some(expr) = node.value() {
-            if let syn::Expr::Tuple(tuple) = expr {

becomes

+        if let Some(Tuple(tuple)) = node.value() {
2023-06-15 20:11:50 -04:00
..
src chore: cleared clippy warnings (#1190) 2023-06-15 20:11:50 -04:00
Cargo.toml feat: RSX parser with recovery after errors, and unquoted text (#1054) 2023-05-21 06:45:53 -04:00