I'd like to disable code inspections for certain projects (like tests or quick-n-dirty proof-of-concept ones).
The section Suppressing code inspections in specific scope goes only up to the file level by suggesting this:
Inspection [name of inspection] | Disable once with comment | Disable all inspection in file - this option inserts a single comment -
ReSharper disable All
in the beginning of the file. This comment suppresses all inspections the file.
What would I have to do to go even further and do the same but for an entire project?
This means:
I've never used it, but I think this is the closest option you can try:
It's also explained in Jetbrains' website.