From 332f1a5691f4211c26bdc11578f9171297c3b108 Mon Sep 17 00:00:00 2001 From: Peter Tribe Date: Wed, 13 Feb 2019 13:42:33 -0800 Subject: [PATCH] Update: config --- .editorconfig | 20 ++++++++++++++++ CodeCoverage.runsettings | 23 +++++++++++++++++++ .../Tests.cs | 4 ---- 3 files changed, 43 insertions(+), 4 deletions(-) create mode 100644 .editorconfig create mode 100644 CodeCoverage.runsettings diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..b725c5c --- /dev/null +++ b/.editorconfig @@ -0,0 +1,20 @@ +# top-most EditorConfig file +root = true + +[*.cs] +indent_style = space +indent_size = 4 +csharp_style_var_for_built_in_types = false:warning +csharp_style_var_elsewhere = false:warning +csharp_style_var_when_type_is_apparent = true:warning +end_of_line = crlf +dotnet_sort_system_directives_first = true +dotnet_style_predefined_type_for_locals_parameters_members = true:warning +dotnet_style_predefined_type_for_member_access = true:warning +dotnet_style_qualification_for_field = true:warning +dotnet_style_qualification_for_method = true:warning +dotnet_style_qualification_for_property = true:warning + +[*.tt] +indent_style = space +indent_size = 4 \ No newline at end of file diff --git a/CodeCoverage.runsettings b/CodeCoverage.runsettings new file mode 100644 index 0000000..e4b3d44 --- /dev/null +++ b/CodeCoverage.runsettings @@ -0,0 +1,23 @@ + + + + + + + + + + EquinoxLabs.SVGSharpie.dll + EquinoxLabs.SVGSharpie.ImageSharp.dll + + + .*tests* + .*Tests* + + + + + + + + \ No newline at end of file diff --git a/tests/EquinoxLabs.SVGSharpie.ImageSharp.Tests/Tests.cs b/tests/EquinoxLabs.SVGSharpie.ImageSharp.Tests/Tests.cs index 1afb338..461cb31 100644 --- a/tests/EquinoxLabs.SVGSharpie.ImageSharp.Tests/Tests.cs +++ b/tests/EquinoxLabs.SVGSharpie.ImageSharp.Tests/Tests.cs @@ -1,9 +1,5 @@ using System; -using System.Collections.Generic; using System.IO; -using System.Linq; -using System.Text; -using System.Threading.Tasks; using Xunit; namespace EquinoxLabs.SVGSharpie.ImageSharp.Tests