This commit is contained in:
Andrew Arnott 2024-04-14 09:40:15 -07:00 committed by GitHub
commit 7f2b3ed0b6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 26 additions and 0 deletions

18
.editorconfig Normal file
View File

@ -0,0 +1,18 @@
# EditorConfig is awesome:http://EditorConfig.org
# top-most EditorConfig file
root = true
[*]
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
[*.sh]
indent_size = 4
[*.json]
indent_size = 2
[*.css]
indent_size = 2

8
.gitattributes vendored Normal file
View File

@ -0,0 +1,8 @@
###############################################################################
# Set default behavior to automatically normalize line endings.
###############################################################################
* text=auto
# Ensure shell scripts use LF line endings (linux only accepts LF)
*.sh eol=lf
*.ps1 eol=lf