Skip to content

Commit 8ca68ec

Browse files
Add files via upload
1 parent 5bd2b0a commit 8ca68ec

Some content is hidden

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

50 files changed

+2022
-160
lines changed

.editorconfig

Lines changed: 120 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
1+
root = true
2+
3+
[*]
4+
ij_continuation_indent_size = 8
5+
ij_formatter_off_tag = @formatter:off
6+
ij_formatter_on_tag = @formatter:on
7+
ij_formatter_tags_enabled = true
8+
ij_smart_tabs = false
9+
ij_visual_guides =
10+
ij_wrap_on_typing = false
11+
12+
[*.csv]
13+
ij_csv_keep_indents_on_empty_lines = true
14+
ij_csv_wrap_long_lines = false
15+
16+
[.editorconfig]
17+
ij_editorconfig_align_group_field_declarations = false
18+
ij_editorconfig_space_after_colon = false
19+
ij_editorconfig_space_after_comma = true
20+
ij_editorconfig_space_before_colon = false
21+
ij_editorconfig_space_before_comma = false
22+
ij_editorconfig_spaces_around_assignment_operators = true
23+
24+
[{*.bash,*.sh,*.zsh}]
25+
ij_shell_binary_ops_start_line = false
26+
ij_shell_keep_column_alignment_padding = false
27+
ij_shell_minify_program = false
28+
ij_shell_redirect_followed_by_space = false
29+
ij_shell_switch_cases_indented = false
30+
ij_shell_use_unix_line_separator = true
31+
32+
[{*.markdown,*.md}]
33+
ij_markdown_force_one_space_after_blockquote_symbol = true
34+
ij_markdown_force_one_space_after_header_symbol = true
35+
ij_markdown_force_one_space_after_list_bullet = true
36+
ij_markdown_force_one_space_between_words = true
37+
ij_markdown_format_tables = true
38+
ij_markdown_insert_quote_arrows_on_wrap = true
39+
ij_markdown_keep_indents_on_empty_lines = false
40+
ij_markdown_keep_line_breaks_inside_text_blocks = true
41+
ij_markdown_max_lines_around_block_elements = 1
42+
ij_markdown_max_lines_around_header = 1
43+
ij_markdown_max_lines_between_paragraphs = 1
44+
ij_markdown_min_lines_around_block_elements = 1
45+
ij_markdown_min_lines_around_header = 1
46+
ij_markdown_min_lines_between_paragraphs = 1
47+
ij_markdown_wrap_text_if_long = true
48+
ij_markdown_wrap_text_inside_blockquotes = true
49+
50+
[{*.py,*.pyw}]
51+
ij_python_align_collections_and_comprehensions = true
52+
ij_python_align_multiline_imports = true
53+
ij_python_align_multiline_parameters = true
54+
ij_python_align_multiline_parameters_in_calls = true
55+
ij_python_blank_line_at_file_end = true
56+
ij_python_blank_lines_after_imports = 1
57+
ij_python_blank_lines_after_local_imports = 0
58+
ij_python_blank_lines_around_class = 1
59+
ij_python_blank_lines_around_method = 1
60+
ij_python_blank_lines_around_top_level_classes_functions = 2
61+
ij_python_blank_lines_before_first_method = 0
62+
ij_python_call_parameters_new_line_after_left_paren = false
63+
ij_python_call_parameters_right_paren_on_new_line = false
64+
ij_python_call_parameters_wrap = normal
65+
ij_python_dict_alignment = 0
66+
ij_python_dict_new_line_after_left_brace = false
67+
ij_python_dict_new_line_before_right_brace = false
68+
ij_python_dict_wrapping = 1
69+
ij_python_from_import_new_line_after_left_parenthesis = false
70+
ij_python_from_import_new_line_before_right_parenthesis = false
71+
ij_python_from_import_parentheses_force_if_multiline = false
72+
ij_python_from_import_trailing_comma_if_multiline = false
73+
ij_python_from_import_wrapping = 1
74+
ij_python_hang_closing_brackets = false
75+
ij_python_keep_blank_lines_in_code = 1
76+
ij_python_keep_blank_lines_in_declarations = 1
77+
ij_python_keep_indents_on_empty_lines = false
78+
ij_python_keep_line_breaks = true
79+
ij_python_method_parameters_new_line_after_left_paren = false
80+
ij_python_method_parameters_right_paren_on_new_line = false
81+
ij_python_method_parameters_wrap = normal
82+
ij_python_new_line_after_colon = false
83+
ij_python_new_line_after_colon_multi_clause = true
84+
ij_python_optimize_imports_always_split_from_imports = false
85+
ij_python_optimize_imports_case_insensitive_order = false
86+
ij_python_optimize_imports_join_from_imports_with_same_source = false
87+
ij_python_optimize_imports_sort_by_type_first = true
88+
ij_python_optimize_imports_sort_imports = true
89+
ij_python_optimize_imports_sort_names_in_from_imports = false
90+
ij_python_space_after_comma = true
91+
ij_python_space_after_number_sign = true
92+
ij_python_space_after_py_colon = true
93+
ij_python_space_before_backslash = true
94+
ij_python_space_before_comma = false
95+
ij_python_space_before_for_semicolon = false
96+
ij_python_space_before_lbracket = false
97+
ij_python_space_before_method_call_parentheses = false
98+
ij_python_space_before_method_parentheses = false
99+
ij_python_space_before_number_sign = true
100+
ij_python_space_before_py_colon = false
101+
ij_python_space_within_empty_method_call_parentheses = false
102+
ij_python_space_within_empty_method_parentheses = false
103+
ij_python_spaces_around_additive_operators = true
104+
ij_python_spaces_around_assignment_operators = true
105+
ij_python_spaces_around_bitwise_operators = true
106+
ij_python_spaces_around_eq_in_keyword_argument = false
107+
ij_python_spaces_around_eq_in_named_parameter = false
108+
ij_python_spaces_around_equality_operators = true
109+
ij_python_spaces_around_multiplicative_operators = true
110+
ij_python_spaces_around_power_operator = true
111+
ij_python_spaces_around_relational_operators = true
112+
ij_python_spaces_around_shift_operators = true
113+
ij_python_spaces_within_braces = false
114+
ij_python_spaces_within_brackets = false
115+
ij_python_spaces_within_method_call_parentheses = false
116+
ij_python_spaces_within_method_parentheses = false
117+
ij_python_use_continuation_indent_for_arguments = false
118+
ij_python_use_continuation_indent_for_collection_and_comprehensions = false
119+
ij_python_use_continuation_indent_for_parameters = true
120+
ij_python_wrap_long_lines = false

0 commit comments

Comments
 (0)