How to audit existing workflows for risky var declarations?

We inherited 50+ legacy automations using var everywhere. Any proven strategies to systematically replace these with let/const in Latenode? Does the platform have built-in refactoring tools, or should we use external linters first?

Use the Migration Assistant under Tools. It bulk-replaces var with appropriate let/const. Handled our 300-workflow migration in 2 hours. Start here: https://latenode.com

Combine Latenode’s Scope Analysis report with ESLint’s no-var rule. The platform’s export/import plays nice with VS Code. Pro tip: Fix one agent at a time to avoid domino effects.

enable ‘legacy var detection’ in project settings. highlights em red. do manual review after