Is it possible to have IntelliJ IDE change var to val automatically on save with some sort of linter or plugin?
var iAmNeverReassigned = "hello"
to val iAmNeverReassigned = "hi"
Is it possible to have IntelliJ IDE change var to val automatically on save with some sort of linter or plugin?
var iAmNeverReassigned = "hello"
to val iAmNeverReassigned = "hi"