aboutsummaryrefslogtreecommitdiffstats
path: root/checkstyle.cfg
diff options
context:
space:
mode:
authorWilliam Victor Mote <vmote@apache.org>2003-06-30 16:04:10 +0000
committerWilliam Victor Mote <vmote@apache.org>2003-06-30 16:04:10 +0000
commitec3f493618a1c1e62eec441ef515ae9d0dec4487 (patch)
tree56b87bd6b15df2fb2f1568ddfc5b550ef190abf5 /checkstyle.cfg
parent928a7bdbd17f541e4495a514df128061beda2c4e (diff)
downloadxmlgraphics-fop-ec3f493618a1c1e62eec441ef515ae9d0dec4487.tar.gz
xmlgraphics-fop-ec3f493618a1c1e62eec441ef515ae9d0dec4487.zip
Sort properties in same order as documentation for easier reference. Add some comments. There are no intended changes to the substance.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196544 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'checkstyle.cfg')
-rw-r--r--checkstyle.cfg36
1 files changed, 31 insertions, 5 deletions
diff --git a/checkstyle.cfg b/checkstyle.cfg
index 01342dfcb..0002adbea 100644
--- a/checkstyle.cfg
+++ b/checkstyle.cfg
@@ -1,10 +1,36 @@
-checkstyle.allow.tabs = no
-checkstyle.tab.width = 4
+# $Id$
+
+# Checkstyle configuration for the Apache FOP project.
+# See http://xml.apache.org/fop for information about FOP.
+# The entries here are sorted in the order of the Checkstyle 2.4 documentation
+# for easier reference.
+
+# Javadoc Comments
+checkstyle.javadoc.scope = protected
checkstyle.allow.noauthor = yes
+
+# Naming Conventions
+
+# Headers
+checkstyle.header.file = checkstyle.header
+checkstyle.header.regexp = yes
+
+# Imports
+
+# Size Violations
checkstyle.maxlinelen = 100
-checkstyle.javadoc.scope = protected
+checkstyle.tab.width = 4
checkstyle.ignore.importlength = yes
+
+# Whitespace
+checkstyle.allow.tabs = no
checkstyle.ignore.whitespace.cast = yes
+
+# Modifiers
checkstyle.allow.protected = yes
-checkstyle.header.file = checkstyle.header
-checkstyle.header.regexp = yes \ No newline at end of file
+
+# Blocks
+
+# Miscellaneous Checks
+
+# Last Line of $RCSFile$