From f4d60cf34282b9fee500314fc2ed7638b1c3c57a Mon Sep 17 00:00:00 2001
From: Jean-Michel <jmichel@google.com>
Date: Mon, 24 Feb 2020 15:45:11 +0100
Subject: [PATCH] Fix configuration about missing newline

---
 .vscode/extensions.json | 2 +-
 .vscode/settings.json   | 5 ++++-
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/.vscode/extensions.json b/.vscode/extensions.json
index cce0ec5..ff8676d 100644
--- a/.vscode/extensions.json
+++ b/.vscode/extensions.json
@@ -4,4 +4,4 @@
         "rust-lang.rust",
         "ms-python.python"
     ]
-}
+}
\ No newline at end of file
diff --git a/.vscode/settings.json b/.vscode/settings.json
index 062785f..ff197f1 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -1,10 +1,13 @@
 {
+  "clang-format.fallbackStyle": "google",
   "editor.detectIndentation": true,
   "editor.formatOnPaste": false,
   "editor.formatOnSave": true,
   "editor.formatOnType": true,
   "editor.insertSpaces": true,
   "editor.tabSize": 4,
+  "files.insertFinalNewline": true,
+  "files.trimTrailingWhitespace": true,
   "rust-client.channel": "nightly",
   // The toolchain is updated from time to time so let's make sure that RLS is updated too
   "rust-client.updateOnStartup": true,
@@ -20,4 +23,4 @@
   "[python]": {
     "editor.tabSize": 2
   },
-}
\ No newline at end of file
+}
-- 
GitLab