-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add basic EditorConfig file for repo (#13444)
- Loading branch information
1 parent
3fba812
commit 432a371
Showing
1 changed file
with
20 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# See https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties | ||
# for all available properties. | ||
|
||
# Top-most EditorConfig file for the firebase-ios-sdk repo. | ||
root = true | ||
|
||
# Defaults for all files | ||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
# ObjC and Swift files | ||
# See https://developer.apple.com/documentation/xcode-release-notes/xcode-16-release-notes#New-Features-in-Xcode-16-Beta | ||
# for the subset of properties supported by Xcode. | ||
[*.{h,m,mm,swift}] | ||
indent_style = space | ||
indent_size = 2 | ||
max_line_length = 100 |