Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/vim71/compiler/checkstyle.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim71/compiler/checkstyle.vim')
-rw-r--r--vim71/compiler/checkstyle.vim20
1 files changed, 20 insertions, 0 deletions
diff --git a/vim71/compiler/checkstyle.vim b/vim71/compiler/checkstyle.vim
new file mode 100644
index 0000000..74ab3e4
--- /dev/null
+++ b/vim71/compiler/checkstyle.vim
@@ -0,0 +1,20 @@
+" Vim compiler file
+" Compiler: Checkstyle
+" Maintainer: Doug Kearns <djkea2@gus.gscit.monash.edu.au>
+" URL: http://gus.gscit.monash.edu.au/~djkea2/vim/compiler/checkstyle.vim
+" Last Change: 2004 Nov 27
+
+if exists("current_compiler")
+ finish
+endif
+let current_compiler = "checkstyle"
+
+if exists(":CompilerSet") != 2 " older Vim always used :setlocal
+ command -nargs=* CompilerSet setlocal <args>
+endif
+
+CompilerSet makeprg=java\ com.puppycrawl.tools.checkstyle.Main\ -f\ plain
+
+" sample error: WebTable.java:282: '+=' is not preceeded with whitespace.
+" WebTable.java:201:1: '{' should be on the previous line.
+CompilerSet errorformat=%f:%l:\ %m,%f:%l:%v:\ %m,%-G%.%#