just a brain dump for a small tool
authorGabor Greif <ggreif@gmail.com>
Thu, 28 Aug 2008 23:15:28 +0000 (23:15 +0000)
committerGabor Greif <ggreif@gmail.com>
Thu, 28 Aug 2008 23:15:28 +0000 (23:15 +0000)
that brings us to 80-col violations
or tabs.

Usage:
  visit-violations <file>

At the moment it outputs editor invocations.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55509 91177308-0d34-0410-b5e6-96231b3b80d8

utils/visit-violations [new file with mode: 0755]

diff --git a/utils/visit-violations b/utils/visit-violations
new file mode 100755 (executable)
index 0000000..f16ad58
--- /dev/null
@@ -0,0 +1,5 @@
+#!/usr/bin/env tcsh
+
+make check-line-length Sources="$1" \
+| awk -F : '/:[0-9]*:/ {print "emacs", "+" $2, $1}' \
+| sort -r