Skip to content

Commit 3bec501

Browse files
authored
Add .editorconfig (#215)
Xcode 16 added support for EditorConfig files. This is a nice way to manage per-project editor settings. Xcode 16 reads .editorconfig files by default, but users can disable EditorConfig support in Xcode's settings if they want. This project's lint rules expect 2-space indentation. This change adds an initial .editorconfig file that configures the indentation style plus some whitespace settings.
1 parent dbd67c2 commit 3bec501

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.editorconfig

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[*.swift]
2+
indent_style = space
3+
indent_size = 2
4+
insert_final_newline = false
5+
trim_trailing_whitespace = true

0 commit comments

Comments
 (0)