Ignore files which ends with -test.js
alexandrubeu opened this issue · 0 comments
alexandrubeu commented
Hi,
I'm trying to exclude files which are ending with -test.js but it's not working. Example (keyBindigns-test.js).
I must mention that the tests are placed near the implementation files. (No special folder of tests)
.codeclimate.yml
exclude_paths:
- node_modules/
- test-build/
- webpack/
- vendor/
- src/__mocks__
- build/
- src/custom-config.js
- src/runtime-configs.js
- gulpfile.js
- .idea/
- webpack.config.js
- "**-test.js"
I've tried "**-test.js" but is not working
Can you help me please ?