diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..335885163 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,23 @@ +# EditorConfig is awesome: http://EditorConfig.org + +# top-most EditorConfig file +root = true + +[*] +indent_style = space +insert_final_newline = true + +[*.{cs}] +indent_size = 4 +trim_trailing_whitespace = true + +[*.{json}] +indent_size = 2 +trim_trailing_whitespace = true + +[*.{ps1,psm1,psd1}] +indent_size = 4 +trim_trailing_whitespace = true + +[*.{ps1xml,props,xml,yaml}] +indent_size = 2 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 000000000..8de2cc52a --- /dev/null +++ b/.gitattributes @@ -0,0 +1,3 @@ +CHANGELOG.md merge=union +* text=auto +*.png binary diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 000000000..1b116b43d --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,10 @@ +{ + // See http://go.microsoft.com/fwlink/?LinkId=827846 + // for the documentation about the extensions.json format + "recommendations": [ + "ms-vscode.csharp", + "ms-vscode.PowerShell", + "EditorConfig.EditorConfig", + "DavidAnson.vscode-markdownlint" + ] +}