Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update EditorConfig to reduce noise in commits due to whitespace changes #1007

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# top-most EditorConfig for IPlugQuake
# Top-most EditorConfig for iPlug2
root = true

[*.*]

[*]
end_of_line = lf

charset = utf-8

indent_style = space

indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true

trim_trailing_whitespace = true
# Windows shell scripts
[*.{bat,ps1}]
end_of_line = crlf
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

*.bat text eol=crlf
*.cmd text eol=crlf
*.ps1 text eol=crlf

*.dsp text eol=crlf
*.dsw text eol=crlf
Expand All @@ -24,6 +25,7 @@
*.props text eol=crlf
*.rc text eol=crlf

*.cmake text eol=lf
*.command text eol=lf
*.sh text eol=lf
*.pbxproj text eol=lf
Expand Down