Skip to content

Commit 432a371

Browse files
authored
Add basic EditorConfig file for repo (#13444)
1 parent 3fba812 commit 432a371

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.editorconfig

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# See https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties
2+
# for all available properties.
3+
4+
# Top-most EditorConfig file for the firebase-ios-sdk repo.
5+
root = true
6+
7+
# Defaults for all files
8+
[*]
9+
charset = utf-8
10+
end_of_line = lf
11+
insert_final_newline = true
12+
trim_trailing_whitespace = true
13+
14+
# ObjC and Swift files
15+
# See https://developer.apple.com/documentation/xcode-release-notes/xcode-16-release-notes#New-Features-in-Xcode-16-Beta
16+
# for the subset of properties supported by Xcode.
17+
[*.{h,m,mm,swift}]
18+
indent_style = space
19+
indent_size = 2
20+
max_line_length = 100

0 commit comments

Comments
 (0)