From 5522cc276e54c9a87e7c903240349aaa0ea4b2b8 Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Tue, 4 Dec 2018 13:31:27 -0500 Subject: [PATCH] chore: Add initial EditorConfig (#4742) * chore: Add initial EditorConfig * chore: Add EditorConfig VS Code suggestion --- .editorconfig | 9 +++++++++ .vscode/extensions.json | 1 + 2 files changed, 10 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000000..ec1feb2198c5 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,9 @@ +# EditorConfig is awesome: https://EditorConfig.org + +# top-most EditorConfig file +root = true + +[*.json] +indent_style = space +indent_size = 2 +trim_trailing_whitespace = false diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 7aeb084ce335..d4550a2026f8 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -1,5 +1,6 @@ { "recommendations": [ + "EditorConfig.EditorConfig", "vscode-docs-authoring" ] }