Try to improve Danger rule for PNGs to ignore screenshots (#234)
This commit is contained in:
parent
73b79cadd0
commit
93a77d94c1
1 changed files with 3 additions and 1 deletions
|
|
@ -107,7 +107,9 @@ if (hasChangedViews) {
|
|||
}
|
||||
|
||||
// Check for pngs on resources
|
||||
const hasPngs = editedFiles.filter(file => file.toLowerCase().endsWith(".png")).length > 0
|
||||
const hasPngs = editedFiles.filter(file => {
|
||||
file.toLowerCase().endsWith(".png") && !file.includes("snapshots/images/") // Exclude screenshots
|
||||
}).length > 0
|
||||
if (hasPngs) {
|
||||
warn("You seem to have made changes to some images. Please consider using an vector drawable.")
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue