This is an automated email from the ASF dual-hosted git repository. blachniet pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/avro.git
commit 33418a3955cac1c00b6c2ee31b3fc4929a54d996 Author: Brian Lachniet <[email protected]> AuthorDate: Sun Aug 18 11:50:52 2019 -0400 AVRO-2454: Ignore SA1116 and SA1117 - Parameters on separate lines --- lang/csharp/Avro.ruleset | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lang/csharp/Avro.ruleset b/lang/csharp/Avro.ruleset index 79f3a94..7029d96 100644 --- a/lang/csharp/Avro.ruleset +++ b/lang/csharp/Avro.ruleset @@ -51,6 +51,12 @@ <!-- PrefixLocalCallsWithThis --> <Rule Id="SA1101" Action="None" /> + <!-- SplitParametersMustStartOnLineAfterDeclaration --> + <Rule Id="SA1116" Action="None" /> + + <!-- ParametersMustBeOnSameLineOrSeparateLines --> + <Rule Id="SA1117" Action="None" /> + <!-- Element Ordering Rules https://google.github.io/styleguide/javaguide.html#s3.4.2-ordering-class-contents @@ -89,8 +95,6 @@ <Rule Id="SA1106" Action="Info" /> <Rule Id="SA1107" Action="Info" /> <Rule Id="SA1108" Action="Info" /> - <Rule Id="SA1116" Action="Info" /> - <Rule Id="SA1117" Action="Info" /> <Rule Id="SA1119" Action="Info" /> <Rule Id="SA1121" Action="Info" /> <Rule Id="SA1122" Action="Info" />
