-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6e2f5b3
commit fee242f
Showing
49 changed files
with
1,069 additions
and
949 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,61 @@ | ||
root = true | ||
|
||
# Let's keep it short/minimal, with comments, so it's clear what is enforced in .editorconfig and why. | ||
|
||
|
||
[*] | ||
|
||
charset = utf-8 | ||
end_of_line = lf | ||
|
||
# file size; diffs on small devices | ||
indent_size = 2 | ||
|
||
indent_style = space | ||
|
||
# simpler adhoc regular expressions search/replace | ||
insert_final_newline = true | ||
|
||
max_line_length = 120 | ||
tab_width = 2 | ||
trim_trailing_whitespace = true | ||
ij_formatter_off_tag = @formatter:off | ||
ij_formatter_on_tag = @formatter:on | ||
ij_formatter_tags_enabled = true | ||
|
||
ij_any_keep_blank_lines_in_code = 3 | ||
ij_properties_keep_blank_lines = true | ||
|
||
|
||
[{*.kt,*.kts}] | ||
|
||
# new most official defaults on top so can be overridden below | ||
ij_kotlin_code_style_defaults = KOTLIN_OFFICIAL | ||
|
||
# No aligns at all - too fancy/problematic | ||
ij_kotlin_align_in_columns_case_branch = false | ||
ij_kotlin_align_multiline_binary_operation = false | ||
ij_kotlin_align_multiline_extends_list = false | ||
ij_kotlin_align_multiline_method_parentheses = false | ||
ij_kotlin_align_multiline_parameters = true | ||
ij_kotlin_align_multiline_parameters_in_calls = false | ||
ij_kotlin_line_break_after_multiline_when_entry = false | ||
|
||
# Trailing commas great for diffs; rearranging lines | ||
ij_kotlin_allow_trailing_comma = true | ||
ij_kotlin_allow_trailing_comma_on_call_site = true | ||
|
||
ij_kotlin_imports_layout = * | ||
|
||
# Let's try to avoid conflicts with files generated by github-workflows-kt | ||
# https://github.com/typesafegithub/github-workflows-kt | ||
[{*.yaml,*.yml}] | ||
ij_yaml_indent_sequence_value = false | ||
ij_yaml_spaces_within_braces = false | ||
ij_yaml_spaces_within_brackets = false | ||
|
||
# Let's try to avoid conflicts with files generated by IntelliJ Run Configurations. | ||
# (Edit Configurations... -> Store as project file) | ||
[{*.ant,*.fxml,*.jhm,*.jnlp,*.jrxml,*.pom,*.rng,*.tld,*.wadl,*.wsdl,*.xml,*.xsd,*.xsl,*.xslt,*.xul}] | ||
ij_xml_space_inside_empty_tag = true | ||
insert_final_newline = false |
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
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
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
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 |
---|---|---|
@@ -1,19 +1,14 @@ | ||
# Project-wide Gradle settings. | ||
|
||
# IDE (e.g. Android Studio) users: | ||
# Gradle settings configured through the IDE *will override* | ||
# any settings specified in this file. | ||
|
||
# For more details on how to configure your build environment visit | ||
# http://www.gradle.org/docs/current/userguide/build_environment.html | ||
|
||
# Specifies the JVM arguments used for the daemon process. | ||
# The setting is particularly useful for tweaking memory settings. | ||
org.gradle.jvmargs=-Xmx1536m | ||
|
||
# When configured, Gradle will run in incubating parallel mode. | ||
# This option should only be used with decoupled projects. More details, visit | ||
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects | ||
# org.gradle.parallel=true | ||
|
||
android.useAndroidX=true |
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
Oops, something went wrong.