禁用 (JetBrains) 整个项目的代码检查
Disable (JetBrains) code inspections for an entire project
我想禁用某些项目的代码检查(例如测试或快速概念验证项目)。
Suppressing code inspections in specific scope 部分仅通过建议达到文件级别:
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.
如果不是整个项目,我还需要做什么才能更进一步,做同样的事情?
这意味着:
- 不是解决方案
- 不是文件
- 不是方法
- 不完全
- 不是 roslyn 分析器
- 但只是一个项目
我从未使用过它,但我认为这是您可以尝试的最接近的选项:
Jetbrains' website中也有说明。
我想禁用某些项目的代码检查(例如测试或快速概念验证项目)。
Suppressing code inspections in specific scope 部分仅通过建议达到文件级别:
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.
如果不是整个项目,我还需要做什么才能更进一步,做同样的事情?
这意味着:
- 不是解决方案
- 不是文件
- 不是方法
- 不完全
- 不是 roslyn 分析器
- 但只是一个项目
我从未使用过它,但我认为这是您可以尝试的最接近的选项:
Jetbrains' website中也有说明。