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

Standardize on LF thoughout the repository. #46

Merged
merged 1 commit into from
Aug 13, 2019
Merged
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
20 changes: 13 additions & 7 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
# EditorConfig: https://EditorConfig.org

# top-most EditorConfig file
root = true

[*.cs]
trim_trailing_whitespace = true
# EditorConfig: https://EditorConfig.org

# top-most EditorConfig file
root = true

[*]
end_of_line = lf
insert_final_newline = true

[*.{cs,cpp,h}]
indent_style = space
indent_size = 4
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we have an epic debate over the size of indentation and tabs/spaces before merging this in? :)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nope :)

trim_trailing_whitespace = true
6 changes: 3 additions & 3 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
###############################################################################
# Do not normalize any line endings.
###############################################################################
###############################################################################
# Do not normalize any line endings.
###############################################################################
* -text
Loading