codeclimate-duplication icon indicating copy to clipboard operation
codeclimate-duplication copied to clipboard

Code Climate engine for code duplication analysis

Results 30 codeclimate-duplication issues
Sort by recently updated
recently updated
newest added

Hello, Is it possible to use the duplication engine on JS-Code in `*.vue` files? https://vuejs.org/v2/guide/single-file-components.html

enhancement

Hash value omission was introduced with ruby 3.1 - [rubyreferences.github.io/rubychanges/3.1.html#values-in-hash-literals-and-keyword-arguments-can-be-omitted](https://rubyreferences.github.io/rubychanges/3.1.html#values-in-hash-literals-and-keyword-arguments-can-be-omitted) And apparently it breaks codeclimate-duplication engine: `Skipping file examle.rb due to exception (Racc::ParseError): example.rb:5 :: parse error on value ":"...

I have a code base that has a huge number of violations - and there isn't an appetite to resolve them upfront so I am wanting to add all of...

It's my first code climate run, and it's stuck on `duplication` engine. ```sh >$ codeclimate analyze ``` gives ``` Starting analysis Running structure: Done! Running duplication: Done! error: (CC::CLI::Analyze::EngineFailure) engine...

I often get warnings in my golang projects that my import blocks are duplicates and should be refactored. Unfortunately, that's not how golang works - everything a file references _must_...

Hi, maybe it would be nice to provide more documentation examples and information about default values. For example I created this config: ```yaml --- version: "2" plugins: duplication: enabled: true...

Reported by a user and recently confirmed, there are cases where the engine gives a wrong reference to a duplication error. It's not a false positive, but the referenced lines...

I can set separate check mass thresholds with ```YAML checks: identical-code: config: threshold: 25 similar-code: config: threshold: 50 ``` but those aren't language specific. I can set a language-specific mass...

Hi everybody, I met an interesting case. There are several different function overrides which are detected as a duplication, but I don't see a way how to solve them. The...