I'd like to exclude the duplication check from my test files, but leave everything else the same.
This is my .codacy.yml
file:
duplication:
enabled: true
exclude_paths:
- 'test/**'
- '**.test.js'
But I still get all duplications reported in test files.
Anyone knows how to accomplish this?
EDIT Based on below suggestions I tried:
engines:
duplication:
enabled: true
exclude_paths:
- 'test/**'
- '**.test.js'
And I tried without the quotes as well:
engines:
duplication:
enabled: true
exclude_paths:
- test/**
- '**.test.js'
Still no dice :(