Closed 8bitDesigner closed 8 years ago
@8bitDesigner yep! If you specify a paths
key in your .codeclimate.yml
file, you should be able to include them. For example:
engines:
duplication:
enabled: true
config:
languages:
javascript:
paths:
- "**/*.es6"
...
Brilliant, thank you!
Perfect, thank you!
On Fri, Jan 8, 2016, at 01:31 PM, Gordon Diggs wrote:
@8bitDesigner[1] yep! If you specify a paths key in your .codeclimate.yml file, you should be able to include them. For example:
engines: duplication: enabled: true config: languages: javascript: paths: - "*/.es6" ... — Reply to this email directly or view it on GitHub[2].
Links:
Hi all, we use [sprockets-es6] in our Rails project which requires all ES6-ish JS files be written with the
.es6
extension. As best I can tell, this analyzer only uses.js
and.jsx
extensions when building its list of files to analyze. Is there any way to add.es6
to that list?