Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在 Codacy 中为主要代码和测试代码设置不同的规则?我知道我可以消除对测试代码的检查。但我不想那样做。但是,有许多规则,尤其是关于重复的规则,对测试没有意义。
我的主要语言是 Scala。
不,你能做的最好的就是忽略文件夹(例如测试文件夹)。
我们通常在测试代码上放松,但避免重复测试代码也是有意义的。您的(真实)代码会随着时间的推移而发展,最终会让您需要更改测试。为什么要在 100 个地方进行更改,而不是在多个测试之间共享一个方法?