From 4c3480796d6cc270a3ae2414e0b76e716161801d Mon Sep 17 00:00:00 2001
From: Kevin Hester <kevinh@geeksville.com>
Date: Sun, 6 Jul 2014 11:35:28 -0700
Subject: [PATCH] all: Change the editorconfig so that it won't want to
 reformat

.editorconfig is a great way to ensure developers follow our
line ending/tab conventions, but we shouldn't have it default
to fixing any lines that were not edited.
---
 .editorconfig | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.editorconfig b/.editorconfig
index 42f5867c9..2c73f926b 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -13,8 +13,8 @@ indent_style = space
 indent_size = 4
 end_of_line = lf
 charset = utf-8
-trim_trailing_whitespace = true
-insert_final_newline = true
+trim_trailing_whitespace = false # These are the correct rules for APM coding standards, but fixing up old files causes git spam
+insert_final_newline = false
 
 [*.mk]
 indent_style = tab
-- 
GitLab