mirror of
https://github.com/erg-lang/erg.git
synced 2025-09-30 12:51:10 +00:00
347 B
347 B
Available Code Actions
eliminate_unused_vars
This code action will eliminate unused variables in code.
foo = 1
for! 0..3, i =>
print! 1
↓
for! 0..3, _ =>
print! 1
change_case
This code action will change non-snake case variables to snake case.
fooBar = 1
↓
foo_bar = 1