Skip to content

Instantly share code, notes, and snippets.

@0xYUANTI
Created August 9, 2011 15:00
Show Gist options
  • Save 0xYUANTI/1134285 to your computer and use it in GitHub Desktop.
Save 0xYUANTI/1134285 to your computer and use it in GitHub Desktop.
#!/usr/bin/mawk -f
# long lines
length() > 79
# trailing whitespace
/[ ]+$/
# tabs
/[\t]/
# file headers
/%%%%%$/ && length != 79
# topic headers
/=====$/ && length != 72
/-----$/ && length != 72
# eof
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment