I am using Intellij to perform code cleanups . I just want to skip the comments from being scanned / checked I want to avoid that.
Thanks ,
I am using Intellij to perform code cleanups . I just want to skip the comments from being scanned / checked I want to avoid that.
Thanks ,
Maybe not what your looking for, but I hope this might help
Replace your Comments (regex could help a lot here)
// @formatter:off
your comments...
// @formatter:on
Code cleanup in IDEA is a batch run of inspections, can you please give an example where you want the code not to be changed? Probably that can be done simply by excluding the particular inspection from the Inspection profile during cleanup.