You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by bl...@apache.org on 2019/08/17 11:53:59 UTC

[avro] branch master updated (9b0c88c -> 93a3ca4)

This is an automated email from the ASF dual-hosted git repository.

blachniet pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/avro.git.


    from 9b0c88c  AVRO-2494: Introduce JSHint for linting the JavaScript bindings
     add 93a3ca4  AVRO-2454: Add FxCop and StyleCop to C# bindings (#609)

No new revisions were added by this update.

Summary of changes:
 lang/csharp/Avro.ruleset                           | 153 +++++++++++++++++++++
 lang/csharp/Avro.sln                               |   2 +
 lang/csharp/src/apache/main/Avro.main.csproj       |  13 ++
 .../apache/main/CodeGen/AvroRuntimeException.cs    |   7 +
 lang/csharp/src/apache/main/CodeGen/CodeGen.cs     |  16 ++-
 .../src/apache/main/CodeGen/CodeGenException.cs    |  10 +-
 lang/csharp/src/apache/main/File/DataFileReader.cs |  17 ++-
 lang/csharp/src/apache/main/GlobalSuppressions.cs  |  42 ++++++
 .../apache/main/Protocol/ProtocolParseException.cs |   7 +
 .../csharp/src/apache/main/Schema/AvroException.cs |   7 +
 .../src/apache/main/Schema/AvroTypeException.cs    |  24 ++++
 lang/csharp/src/apache/main/Schema/Field.cs        |  17 ++-
 lang/csharp/src/apache/main/Schema/RecordSchema.cs |   8 +-
 lang/csharp/src/apache/main/Schema/Schema.cs       |   5 +-
 .../src/apache/main/Schema/SchemaParseException.cs |  24 +++-
 .../src/apache/main/Specific/ObjectCreator.cs      |   4 +-
 .../src/apache/main/Specific/SpecificException.cs  |  31 +++++
 lang/csharp/stylecop.json                          |  26 ++++
 18 files changed, 385 insertions(+), 28 deletions(-)
 create mode 100644 lang/csharp/Avro.ruleset
 create mode 100644 lang/csharp/src/apache/main/GlobalSuppressions.cs
 create mode 100644 lang/csharp/stylecop.json