Skip to content

Instantly share code, notes, and snippets.

@pgherveou
Last active November 30, 2015 17:35
Show Gist options
  • Select an option

  • Save pgherveou/c0ee52b311a6ed6f21b0 to your computer and use it in GitHub Desktop.

Select an option

Save pgherveou/c0ee52b311a6ed6f21b0 to your computer and use it in GitHub Desktop.
filter file in pull request
$('.file-header')
.filter(function() {
const path = $(this).data('path')
return !path.endsWith("swift")
})
.each(function() {
$(this).parent().remove()
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment