# ATC coding rules - https://github.com/atc-net/atc-coding-rules # Version: 1.0.5 # Updated: 02-05-2021 # Location: Src # Inspired by: https://docs.microsoft.com/en-us/dotnet/fundamentals/code-analysis/code-style-rule-options ########################################## # Code Analyzers Rules ########################################## [*.{cs,csx,cake}] # AsyncFixer # http://www.asyncfixer.com # Asyncify # https://github.com/hvanbakel/Asyncify-CSharp # Meziantou # https://www.meziantou.net/enforcing-asynchronous-code-good-practices-using-a-roslyn-analyzer.htm # Microsoft - Code Analysis # https://docs.microsoft.com/en-us/dotnet/fundamentals/code-analysis/quality-rules/ # SecurityCodeScan # https://security-code-scan.github.io/ # SonarAnalyzer.CSharp # https://rules.sonarsource.com/csharp ########################################## # Custom - Code Analyzers Rules ########################################## dotnet_diagnostic.S1133.severity = none # S1133: Deprecated code should be removed dotnet_diagnostic.S3011.severity = none # S3011: Reflection should not be used to increase accessibility of classes, methods, or fields