Can't see my inspection description
I wrote inspection for our project which is running OK, but i have small problem: I can't see it's description in 'Errors' settings.
All i see is Under construction
I override method:
public String getShortName() {
return "EmptyReturnTag";
}
I add html file \inspectionDescriptions\EmptyReturnTag.html
Am i missing something ?
Thanks
Boaz
Please sign in to leave a comment.
Make sure the HTML file is actually getting packaged by your build, either via Ant/Maven if you are using those, or by making sure the HTML is in an appropriate source root if you are using the DevKit's plugin packaging tool.
--Dave Griffith
Thanks
This solved my problem.
(I had bad time convince intellij to package this directory in the root).
Regards
Boaz