Pattern: Trailing newline
Issue: -
Used when there are trailing blank lines in a file.
Example of incorrect code:
"""This file has trailing newlines."""
print "test"
# +1: [trailing-newlines]
Example of correct code:
print "test"
# +1: [trailing-newlines]