Skip to content

Commit

Permalink
Update editor config
Browse files Browse the repository at this point in the history
- Increase max line length (120->140)
- Fix wildcard for Kotlin files
  • Loading branch information
nielsvanvelzen committed Jul 16, 2024
1 parent aafebfc commit 96174e5
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,17 @@ root = true

[*]
insert_final_newline = true
max_line_length = 140
trim_trailing_whitespace = true

[{*.kts, *.kt}]
[{*.kts,*.kt}]
charset = utf-8
indent_style = tab
tab_width = 4
# Disable wildcard imports in IntelliJ/Android Studio
ij_kotlin_name_count_to_use_star_import = 1000
ij_kotlin_name_count_to_use_star_import_for_members = 1000
ij_kotlin_packages_to_use_import_on_demand =
ij_kotlin_packages_to_use_import_on_demand = unset

[*.md]
trim_trailing_whitespace = false
trim_trailing_whitespace = false

0 comments on commit 96174e5

Please sign in to comment.