Skip to content

Commit

Permalink
Editors should not automatically trim trailing whitespace.
Browse files Browse the repository at this point in the history
https://bugs.webkit.org/show_bug.cgi?id=212763

Reviewed by Yusuke Suzuki.

Doing so would force a lot of unnecessary code changes and make patches hard to
review.  It is common WebKit practice to not make unrelated changes in patches.

* .editorconfig:


Canonical link: https://commits.webkit.org/225569@main
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@262555 268f45cc-cd09-0410-ab3c-d52691b4dbfc
  • Loading branch information
Mark Lam committed Jun 4, 2020
1 parent ad03434 commit 85195ac
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
3 changes: 0 additions & 3 deletions .editorconfig
Expand Up @@ -5,19 +5,16 @@ indent_style = space
indent_size = 4
tab_width = 4
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true

[{CMakeLists.txt,*.cmake}]
indent_style = space
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true

[.editorconfig]
indent_style = space
indent_size = 4
tab_width = 4
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true
12 changes: 12 additions & 0 deletions ChangeLog
@@ -1,3 +1,15 @@
2020-06-04 Mark Lam <mark.lam@apple.com>

Editors should not automatically trim trailing whitespace.
https://bugs.webkit.org/show_bug.cgi?id=212763

Reviewed by Yusuke Suzuki.

Doing so would force a lot of unnecessary code changes and make patches hard to
review. It is common WebKit practice to not make unrelated changes in patches.

* .editorconfig:

2020-06-02 Keith Rollin <krollin@apple.com>

Revert FEATURES_DEFINES related changes
Expand Down

0 comments on commit 85195ac

Please sign in to comment.