-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Kesha Patel
committed
Sep 5, 2024
1 parent
a88d283
commit aad3a8a
Showing
3 changed files
with
38 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
root = true | ||
|
||
[*] | ||
end_of_line = crlf | ||
indent_style = tab | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[*.{json,yml,sh}] | ||
charset = utf-8 | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
root = true | ||
|
||
[*] | ||
# end_of_line = crlf | ||
indent_style = tab | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[*.{json,yml,sh}] | ||
charset = utf-8 | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
|
||
# Enforce CRLF to all files by default | ||
* text=auto eol=crlf | ||
|
||
# | ||
# The above will handle all files NOT found below | ||
# | ||
|
||
# Graphics | ||
*.png binary | ||
*.jpg binary | ||
|
||
# Scripts | ||
*.sh text eol=lf | ||
|
||
# Serialisation | ||
*.json text eol=lf | ||
*.yml text eol=lf | ||
|
||
# | ||
# Exclude files from exporting | ||
# | ||
|
||
.gitattributes export-ignore | ||
.gitignore export-ignore | ||
|
||
# Enforce CRLF to all files by default | ||
* #text=auto eol=crlf | ||
|
||
# | ||
# The above will handle all files NOT found below | ||
# | ||
|
||
# Graphics | ||
*.png binary | ||
*.jpg binary | ||
|
||
# Scripts | ||
#*.sh text eol=lf | ||
|
||
# Serialisation | ||
# *.json text eol=lf | ||
# *.yml text eol=lf | ||
|
||
# | ||
# Exclude files from exporting | ||
# | ||
|
||
.gitattributes export-ignore | ||
.gitignore export-ignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
{ | ||
"printWidth": 100, | ||
"endOfLine": "crlf", | ||
"trailingComma": "es5", | ||
"singleQuote": true, | ||
"semi": true, | ||
|