DEV: simpler Dangerfile logic (#6911)

This commit is contained in:
Joffrey JAFFEUX 2019-01-21 12:23:18 +01:00 committed by GitHub
parent 426907cb88
commit 6f0bc16baf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,8 +19,8 @@ if locales_changes.any? && has_non_en_locales_changes
end
files = (git.added_files + git.modified_files)
.reject! { |path| path.start_with?("plugins/") }
.reject! { |path| !(path.end_with?("es6") || path.end_with?("rb")) }
.select { |path| !path.start_with?("plugins/") }
.select { |path| path.end_with?("es6") || path.end_with?("rb") }
super_offenses = []