diff options
author | Valery Piashchynski <[email protected]> | 2023-09-01 15:31:45 +0200 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2023-09-01 15:31:45 +0200 |
commit | fbd0b4f3d6b87c213db3ac4dd43f18727e8ddfbf (patch) | |
tree | 97e6000d6ad7131e728be393e6c863e5cb14ed11 | |
parent | 1e42b77699dc50b41c157cd579663f52992eda02 (diff) |
chore: qodana exclude go.mod/sum files
Signed-off-by: Valery Piashchynski <[email protected]>
-rw-r--r-- | qodana.yaml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/qodana.yaml b/qodana.yaml index 0a9587ac..493800e7 100644 --- a/qodana.yaml +++ b/qodana.yaml @@ -13,10 +13,11 @@ profile: # - name: <SomeEnabledInspectionId> #Disable inspections -#exclude: -# - name: <SomeDisabledInspectionId> -# paths: -# - <path/where/not/run/inspection> +exclude: + - name: VgoUnusedDependency + paths: + - go.mod + - go.sum #Execute shell command before Qodana execution (Applied in CI/CD pipeline) #bootstrap: sh ./prepare-qodana.sh |