diff options
author | Dmitry Sharshakov <sh7dm@outlook.com> | 2019-02-07 19:31:49 +0300 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-02-07 11:31:49 -0500 |
commit | 9470f2b0c87a1051c0fd629ce942a6bf15ede612 (patch) | |
tree | f04dd85e79888df4ebe20a675967edae179c9d7e | |
parent | 79b95341d9f9804207ff0c17e11085371e0f2e24 (diff) |
editorconfig: Don't insert final newline in .out files (#1686)
-rw-r--r-- | .editorconfig | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig index 959719527..b4720d575 100644 --- a/.editorconfig +++ b/.editorconfig @@ -8,5 +8,9 @@ indent_size = 2 charset = utf-8 trim_trailing_whitespace = true +[*.out] # make editor neutral to .out files +insert_final_newline = false +trim_trailing_whitespace = false + [*.py] indent_size = 4 |