jianbingfang / vscode-dup-checker

vscode extension to check and dedup duplicate lines
MIT License
30 stars 4 forks source link

Duplicate block detection #11

Open DoganM95 opened 3 years ago

DoganM95 commented 3 years ago

Is this extension capable of also detecting duplicate blocks of code instead of only lines?

E.g. i have a json file with many objects in an array and each object has many key-values. Can duplicate objects be detected by comparing their blocks of code?

If not, could you implement this functionality?

jianbingfang commented 3 years ago

Is this extension capable of also detecting duplicate blocks of code instead of only lines?

E.g. i have a json file with many objects in an array and each object has many key-values. Can duplicate objects be detected by comparing their blocks of code?

If not, could you implement this functionality?

Sorry, currently for lines only. But I must say it's a wonderful idea! I'd like to get it implemented when I'm free.

jianbingfang commented 3 years ago

I'm not sure is Copy/Paste Detector helpful for you? @DoganM95

DoganM95 commented 3 years ago

Unfortunately Copy/Paste detector doesn't work for me, that extension may be outdated.. But thank you for the suggestion and research!