blob: 0002adbea68a307358b3c866c5e6fa1ebc98937a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# $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.tab.width = 4
checkstyle.ignore.importlength = yes
# Whitespace
checkstyle.allow.tabs = no
checkstyle.ignore.whitespace.cast = yes
# Modifiers
checkstyle.allow.protected = yes
# Blocks
# Miscellaneous Checks
# Last Line of $RCSFile$
|