I have a lot (near 100) const enum
s in the code, some of them contain up to 100 values. I want to clean them up by removing values that are never used. All values are explicitly assigned a value, so I just need to remove the lines without any recalculations. How can I make it automatically? I'm using VS Code.
↧
Remove unused enum values from source code
↧