ton-blockchain / intellij-ton

TON Development plugin for the IntelliJ Platform
https://plugins.jetbrains.com/plugin/23382-ton
GNU General Public License v3.0
65 stars 8 forks source link

Unused variable trick #131

Open MicroNovaX opened 10 months ago

MicroNovaX commented 10 months ago

QSTpO7m I propose to add a trick that will suggest either removing the variable completely, or replacing it with _ . Example (var b used, other - no) -> (int a, int b, int c) = load_data() -> (_, int b, _) = load_data()