Skip to content

Commit

Permalink
Fixing lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiasLaving committed Jun 20, 2023
1 parent db333e6 commit a4e29c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nuget/lib/dependabot/nuget/file_parser.rb
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ def project_files
projfile = /\.[a-z]{2}proj$/
packageprops = /[Dd]irectory.[Pp]ackages.props/

dependency_files.select { |df|
dependency_files.select do |df|
df.name.match?(projfile) ||
df.name.match?(packageprops)
}
end
end

def packages_config_files
Expand Down

0 comments on commit a4e29c1

Please sign in to comment.