File tree 2 files changed +7
-3
lines changed
lib/cc/engine/bundler_audit
2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -13,8 +13,12 @@ engines:
13
13
rubocop :
14
14
enabled : true
15
15
exclude_fingerprints :
16
- # Ignoring long method length for Issue#to_json
17
- - 3d618821b1ce28599d6c54f90bb4df59
16
+ # Ignoring long method length for Analyzer#run
17
+ - b18e3ac8a9b02f26a0b769f67d758761
18
+ # Ignoring long method length for UnpatchedGemIssue#to_json
19
+ - 60d15e0a35747ad1c4a7dfe29301f3bd
20
+ # Ignoring long method length for InsecureSourceIssue#to_json
21
+ - f861a7b796b8b07217f4a75db9bb631d
18
22
ratings :
19
23
paths :
20
24
- " **.rb"
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ def run
14
14
if gemfile_lock_exists?
15
15
Dir . chdir ( directory ) do
16
16
Bundler ::Audit ::Scanner . new . scan do |vulnerability |
17
- if issue = issue_for_vulerability ( vulnerability )
17
+ if ( issue = issue_for_vulerability ( vulnerability ) )
18
18
stdout . print ( "#{ issue . to_json } \0 " )
19
19
else
20
20
stderr . print ( "Unsupported vulnerability: #{ vulnerability . class . name } " )
You can’t perform that action at this time.
0 commit comments