Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 19 additions & 4 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,24 @@
root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
insert_final_newline = true
trim_trailing_whitespace = true
insert_final_newline = true
charset = utf-8

[*.dart]
indent_style = space
indent_size = 2

# Groovy Gradle build scripts style (build.gradle files)
[*.gradle]
indent_style = space
indent_size = 4

# Kotlin code style according to https://developer.android.com/kotlin/style-guide
[*.{kt, kts}]
indent_size = 4
max_line_length = 100

[*.yml]
indent_size = 2