Rodolfo Stangherlin

Results 4 comments of Rodolfo Stangherlin

Same here: ``` ERROR in ./~/raven/lib/breadcrumbs.js Module not found: Error: Can't resolve 'pg' in '/home/rodolfo/eduk/react/eduk-web-ui/node_modules/raven/lib' @ ./~/raven/lib/breadcrumbs.js 120:13-26 @ ./~/raven/lib/client.js @ ./~/raven/index.js ``` Adding the `externals` conf fix it, but...

That configuration is not working for me. I get it working using: ``` version: "2" plugins: duplication: config: languages: javascript: filters: - "(object (Identifier PropTypes))" ``` This also works for...

But is still catching repetitions on things like `PropTypes.func` or `PropTypes.shape`. I'm testing it using: ``` /opt/codeclimate/bin/codeclimate analyze --dev -e duplication -f text ``` I set `dump_ast: true` on `.codeclimate.yml`....

It does not have to use a global function to fail: - This does not show the error/warning: ```jsx const lbl = "Surname"; return ( {lbl} ); ``` - This...