Skip to content

Commit ae3c473

Browse files
committed
Initial commit to github
1 parent 8ab765a commit ae3c473

179 files changed

Lines changed: 12930 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.editorconfig

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
# https://github.com/facebook/ktfmt/blob/main/docs/editorconfig/.editorconfig-default
2+
3+
[{*.kt,*.kts}]
4+
ij_kotlin_imports_layout = *,^
5+
ij_kotlin_packages_to_use_import_on_demand=
6+
indent_style = space
7+
insert_final_newline = true
8+
max_line_length = 100
9+
indent_size = 2
10+
ij_continuation_indent_size = 4
11+
ij_java_names_count_to_use_import_on_demand = 9999
12+
ij_kotlin_align_in_columns_case_branch = false
13+
ij_kotlin_align_multiline_binary_operation = false
14+
ij_kotlin_align_multiline_extends_list = false
15+
ij_kotlin_align_multiline_method_parentheses = false
16+
ij_kotlin_align_multiline_parameters = true
17+
ij_kotlin_align_multiline_parameters_in_calls = false
18+
ij_kotlin_allow_trailing_comma = true
19+
ij_kotlin_allow_trailing_comma_on_call_site = true
20+
ij_kotlin_assignment_wrap = normal
21+
ij_kotlin_blank_lines_after_class_header = 0
22+
ij_kotlin_blank_lines_around_block_when_branches = 0
23+
ij_kotlin_blank_lines_before_declaration_with_comment_or_annotation_on_separate_line = 1
24+
ij_kotlin_block_comment_at_first_column = true
25+
ij_kotlin_call_parameters_new_line_after_left_paren = true
26+
ij_kotlin_call_parameters_right_paren_on_new_line = false
27+
ij_kotlin_call_parameters_wrap = on_every_item
28+
ij_kotlin_catch_on_new_line = false
29+
ij_kotlin_class_annotation_wrap = split_into_lines
30+
ij_kotlin_code_style_defaults = KOTLIN_OFFICIAL
31+
ij_kotlin_continuation_indent_for_chained_calls = true
32+
ij_kotlin_continuation_indent_for_expression_bodies = true
33+
ij_kotlin_continuation_indent_in_argument_lists = true
34+
ij_kotlin_continuation_indent_in_elvis = false
35+
ij_kotlin_continuation_indent_in_if_conditions = false
36+
ij_kotlin_continuation_indent_in_parameter_lists = true
37+
ij_kotlin_continuation_indent_in_supertype_lists = false
38+
ij_kotlin_else_on_new_line = false
39+
ij_kotlin_enum_constants_wrap = off
40+
ij_kotlin_extends_list_wrap = normal
41+
ij_kotlin_field_annotation_wrap = split_into_lines
42+
ij_kotlin_finally_on_new_line = false
43+
ij_kotlin_if_rparen_on_new_line = false
44+
ij_kotlin_import_nested_classes = false
45+
ij_kotlin_insert_whitespaces_in_simple_one_line_method = true
46+
ij_kotlin_keep_blank_lines_before_right_brace = 2
47+
ij_kotlin_keep_blank_lines_in_code = 2
48+
ij_kotlin_keep_blank_lines_in_declarations = 2
49+
ij_kotlin_keep_first_column_comment = true
50+
ij_kotlin_keep_indents_on_empty_lines = false
51+
ij_kotlin_keep_line_breaks = true
52+
ij_kotlin_lbrace_on_next_line = false
53+
ij_kotlin_line_comment_add_space = false
54+
ij_kotlin_line_comment_at_first_column = true
55+
ij_kotlin_method_annotation_wrap = split_into_lines
56+
ij_kotlin_method_call_chain_wrap = normal
57+
ij_kotlin_method_parameters_new_line_after_left_paren = true
58+
ij_kotlin_method_parameters_right_paren_on_new_line = true
59+
ij_kotlin_method_parameters_wrap = on_every_item
60+
ij_kotlin_name_count_to_use_star_import = 9999
61+
ij_kotlin_name_count_to_use_star_import_for_members = 9999
62+
ij_kotlin_parameter_annotation_wrap = off
63+
ij_kotlin_space_after_comma = true
64+
ij_kotlin_space_after_extend_colon = true
65+
ij_kotlin_space_after_type_colon = true
66+
ij_kotlin_space_before_catch_parentheses = true
67+
ij_kotlin_space_before_comma = false
68+
ij_kotlin_space_before_extend_colon = true
69+
ij_kotlin_space_before_for_parentheses = true
70+
ij_kotlin_space_before_if_parentheses = true
71+
ij_kotlin_space_before_lambda_arrow = true
72+
ij_kotlin_space_before_type_colon = false
73+
ij_kotlin_space_before_when_parentheses = true
74+
ij_kotlin_space_before_while_parentheses = true
75+
ij_kotlin_spaces_around_additive_operators = true
76+
ij_kotlin_spaces_around_assignment_operators = true
77+
ij_kotlin_spaces_around_equality_operators = true
78+
ij_kotlin_spaces_around_function_type_arrow = true
79+
ij_kotlin_spaces_around_logical_operators = true
80+
ij_kotlin_spaces_around_multiplicative_operators = true
81+
ij_kotlin_spaces_around_range = false
82+
ij_kotlin_spaces_around_relational_operators = true
83+
ij_kotlin_spaces_around_unary_operator = false
84+
ij_kotlin_spaces_around_when_arrow = true
85+
ij_kotlin_variable_annotation_wrap = off
86+
ij_kotlin_while_on_new_line = false
87+
ij_kotlin_wrap_elvis_expressions = 1
88+
ij_kotlin_wrap_expression_body_functions = 1
89+
ij_kotlin_wrap_first_method_in_call_chain = false

.gitattributes

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
*.bat text eol=crlf
3+
*.sh text eol=lf
4+
*.conf text eol=lf
5+
gradlew text eol=lf
6+
7+
# These files are text and should be normalized (Convert crlf <=> lf)
8+
*.kt text
9+
*.java text
10+
*.properties text
11+
*.yml text
12+
*.xml text
13+
*.md text
14+
*.gradle text
15+
*.sql text
16+
*.api text

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.gradle
2+
.kotlin
3+
build
4+
out
5+
node_modules
6+
7+
*.tar
8+
*.zip
9+
*.gz

.idea/.gitignore

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/.name

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/Project.xml

Lines changed: 25 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/codeStyleConfig.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/compiler.xml

Lines changed: 26 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/detekt.xml

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

Lines changed: 42 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)