我想从我的测试文件中排除重复检查,但其他一切都保持不变。
这是我的.codacy.yml
文件:
duplication:
enabled: true
exclude_paths:
- 'test/**'
- '**.test.js'
但是我仍然在测试文件中报告了所有重复项。
任何人都知道如何做到这一点?
编辑根据我尝试的以下建议:
engines:
duplication:
enabled: true
exclude_paths:
- 'test/**'
- '**.test.js'
我也试过不带引号:
engines:
duplication:
enabled: true
exclude_paths:
- test/**
- '**.test.js'
仍然没有骰子:(