From de32bf65900844132c0a46d432f4b7d12a794c08 Mon Sep 17 00:00:00 2001 From: Timothee Guerin Date: Wed, 12 Jul 2017 12:41:15 -0700 Subject: [PATCH] Added editorconfig and settings --- .editorconfig | 8 ++++++++ .vscode/settings.json | 3 +++ 2 files changed, 11 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..53ea69a3 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,8 @@ +[*] +indent_style = space +indent_size = 4 +insert_final_newline = true +trim_trailing_whitespace = true + +[*.json] +indent_size = 2 diff --git a/.vscode/settings.json b/.vscode/settings.json index 4238c57f..f2206c7f 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -4,6 +4,9 @@ "build/**": true, "bin/**": true }, + "files.exclude": { + "**/__pycache__/**/*": true + }, "python.autoComplete.extraPaths": [ "${workspaceRoot}/node" ]