When using Codacy in conjunction with Go extension, Codacy will cause duplication errors to be detected by Go because it is creating a file named <timestamp>-<filename> while analysing.
Example:

This is likely the issue:
|
pathToFile = path.join(filePath, `${Date.now().valueOf().toString()}-${fileName}`) |
Would it possible to create this file inside a temp folder?
When using Codacy in conjunction with Go extension, Codacy will cause duplication errors to be detected by Go because it is creating a file named
<timestamp>-<filename>while analysing.Example:

This is likely the issue:
codacy-vscode-extension/src/views/ProblemsDiagnosticCollection.ts
Line 258 in fb26219
Would it possible to create this file inside a temp folder?