# # SPECIFY WHICH COMMENTS SHOULD NOT BE CHECKED. # # (BY DEFAULT ALL COMMENTS GET CHECKED) # # SYNTAX: # # do_not_check.[class|inner_class|interface|*].[field|method|type|constructor|*] = true # #do_not_check.class.method = true #do_not_check.inner_class.* = true # # USE REGULAR EXPRESSIONS TO SPECIFY UNACCEPTABLE COMMENTS. # # SYNTAX: # # do_not_accept.[class|inner_class|interface|*].[field|method|type|constructor|*] = # # do not accept empty comments do_not_accept.*.* = \\s* # do not accept VAJ generated comment do_not_accept.*.method = (?s)(.*Insert the method's description here\\..*)|(.*method comment\\..*) # do not accept VAJ generated comment do_not_accept.*.type = (?s).*Insert the type's description here\\..* # do not accept comments generated by IntelliJ IDEA do_not_accept.*.type = (?s).*Created by IntelliJ IDEA\\..* # do not accept VAJ generated comment do_not_accept.*.constructor = (?s).*constructor comment\\..* # # USE A REGULAR EXPRESSION TO SPECIFY TYPE COMMENTS WHICH INDICATE THAT A CLASS # SHOULD NOT BE CHECKED. # # do_not_check_comment = # do_not_check_comment = (?s).*@implementation This class was generated by a tool\\..* # # USE A REGULAR EXPRESSIONS TO SPECIFY STRINGS THAT SHOULD BE REPLACED # BE EXTREMLY CAREFUL WITH THIS FEATURE SINCE IT CAN EASILY DESTROY YOUR FILES !!! # # SYNTAX: # # substitute_ = # substitute_@author.*Andreas\ Doms.* = @author Andreas Doms substitute_@author.*Mirko\ Seifert.* = @author Mirko Seifert substitute_constructor\ comment\\. = constructor.