diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-05-16 13:11:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-16 13:11:41 +0200 |
commit | ce2077262a967cd9020d54059a03a11f33d15c01 (patch) | |
tree | 831650c309e15e5cfd09f2000717f5e068a2c120 | |
parent | a4560c1e97d92cab3b370115581d8ee8f5c0b767 (diff) | |
parent | 3288ce63d36e01b5b53b171102f79531899dc76c (diff) |
Merge pull request #8784 from bojidar-bg/editorconfig-trim-whitespace
Add trim_trailing_whitespace to .editorconfig
[ci skip]
-rw-r--r-- | .editorconfig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig index e19057f0e8..b7ef43c340 100644 --- a/.editorconfig +++ b/.editorconfig @@ -5,6 +5,9 @@ charset = utf-8 end_of_line = lf indent_style = tab +[*.{cpp,hpp,c,h,mm}] +trim_trailing_whitespace = true + [.travis.yml] indent_style = space indent_size = 2 |