You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@parquet.apache.org by sh...@apache.org on 2022/08/23 15:32:19 UTC

[parquet-mr] branch master updated: Prevent IntelliJ from making unsolicited whitespace changes (#986)

This is an automated email from the ASF dual-hosted git repository.

shangxinli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/parquet-mr.git


The following commit(s) were added to refs/heads/master by this push:
     new 6add62754 Prevent IntelliJ from making unsolicited whitespace changes (#986)
6add62754 is described below

commit 6add62754b3d53e30376360f8d215da004fa8096
Author: Timothy N. Miller <94...@users.noreply.github.com>
AuthorDate: Tue Aug 23 15:32:13 2022 +0000

    Prevent IntelliJ from making unsolicited whitespace changes (#986)
    
    Every time I make a PR on this project, I get a whole bunch of
    complaints about superfluous whitespace changes that I have to
    manually revert. Those changes are caused by a flag in
    .editorconfig. By removing this flag, we should stop seeing those
    compaints.
---
 .editorconfig | 1 -
 1 file changed, 1 deletion(-)

diff --git a/.editorconfig b/.editorconfig
index e1e7a7190..e6c19ca6a 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -22,7 +22,6 @@ root = true
 charset = utf-8
 end_of_line = lf
 insert_final_newline = true
-trim_trailing_whitespace = true
 indent_style = space
 
 [*.scala]