From 602c8d75db0a0648c9fc4eb518094015fe9712ab Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Tue, 23 Apr 2019 21:37:59 -0400 Subject: use CRLF line endings in README.txt file for compatibility with more Windows text editors --- .editorconfig | 3 +++ 1 file changed, 3 insertions(+) (limited to '.editorconfig') diff --git a/.editorconfig b/.editorconfig index 5bfc44bd..e1b7100f 100644 --- a/.editorconfig +++ b/.editorconfig @@ -18,6 +18,9 @@ indent_size = 2 [*.csproj] insert_final_newline = false +[README.txt] +end_of_line=crlf + ########## ## C# formatting ## documentation: https://docs.microsoft.com/en-us/visualstudio/ide/editorconfig-code-style-settings-reference -- cgit From 94702ca4b7136eeb306a2109e7af2a6c804b6335 Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Tue, 18 Jun 2019 23:36:58 -0400 Subject: use default indentation for JSON files --- .editorconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.editorconfig') diff --git a/.editorconfig b/.editorconfig index e1b7100f..deeff0bc 100644 --- a/.editorconfig +++ b/.editorconfig @@ -12,7 +12,7 @@ insert_final_newline = true trim_trailing_whitespace = true charset = utf-8 -[*.{csproj,json,nuspec,targets}] +[*.{csproj,nuspec,targets}] indent_size = 2 [*.csproj] -- cgit From fb04b67a2b91ce3a3b2b2f160b4266eeea624e67 Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Tue, 18 Jun 2019 23:39:08 -0400 Subject: use same .csproj charset as Visual Studio tools --- .editorconfig | 1 + 1 file changed, 1 insertion(+) (limited to '.editorconfig') diff --git a/.editorconfig b/.editorconfig index deeff0bc..38f3c261 100644 --- a/.editorconfig +++ b/.editorconfig @@ -16,6 +16,7 @@ charset = utf-8 indent_size = 2 [*.csproj] +charset = utf-8-bom insert_final_newline = false [README.txt] -- cgit