Skip to content

Commit 873a80e

Browse files
committed
feat: copy .editorconfig from the inner portion to the template
Ensures the template scripts and hooks follow the same style guide
1 parent 5624f06 commit 873a80e

File tree

1 file changed

+113
-0
lines changed

1 file changed

+113
-0
lines changed

.editorconfig

Lines changed: 113 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
insert_final_newline = true
7+
trim_trailing_whitespace = true
8+
max_line_length = 120
9+
tab_width = 4
10+
ij_continuation_indent_size = 8
11+
ij_formatter_off_tag = @formatter:off
12+
ij_formatter_on_tag = @formatter:on
13+
ij_formatter_tags_enabled = true
14+
ij_smart_tabs = false
15+
ij_visual_guides =
16+
ij_wrap_on_typing = false
17+
18+
[*.toml]
19+
indent_style = space
20+
indent_size = 4
21+
22+
[*.yml,yaml,json]
23+
indent_style = space
24+
indent_size = 2
25+
26+
[{*.py,*.pyw,*.whl}]
27+
indent_style = space
28+
indent_size = 4
29+
ij_continuation_indent_size = 4
30+
ij_python_add_indent_inside_injections = false
31+
ij_python_align_collections_and_comprehensions = true
32+
ij_python_align_multiline_imports = true
33+
ij_python_align_multiline_parameters = false
34+
ij_python_align_multiline_parameters_in_calls = false
35+
ij_python_blank_line_at_file_end = true
36+
ij_python_blank_lines_after_imports = 2
37+
ij_python_blank_lines_after_local_imports = 0
38+
ij_python_blank_lines_around_class = 1
39+
ij_python_blank_lines_around_method = 1
40+
ij_python_blank_lines_around_top_level_classes_functions = 2
41+
ij_python_blank_lines_before_first_method = 0
42+
ij_python_call_parameters_new_line_after_left_paren = true
43+
ij_python_call_parameters_right_paren_on_new_line = true
44+
ij_python_call_parameters_wrap = on_every_item
45+
ij_python_dict_alignment = 0
46+
ij_python_dict_new_line_after_left_brace = true
47+
ij_python_dict_new_line_before_right_brace = true
48+
ij_python_dict_wrapping = on_every_item
49+
ij_python_format_injected_fragments = true
50+
ij_python_from_import_new_line_after_left_parenthesis = true
51+
ij_python_from_import_new_line_before_right_parenthesis = true
52+
ij_python_from_import_parentheses_force_if_multiline = true
53+
ij_python_from_import_trailing_comma_if_multiline = false
54+
ij_python_from_import_wrapping = on_every_item
55+
ij_python_hang_closing_brackets = false
56+
ij_python_keep_blank_lines_in_code = 1
57+
ij_python_keep_blank_lines_in_declarations = 1
58+
ij_python_keep_indents_on_empty_lines = false
59+
ij_python_keep_line_breaks = true
60+
ij_python_list_new_line_after_left_bracket = true
61+
ij_python_list_new_line_before_right_bracket = true
62+
ij_python_list_wrapping = on_every_item
63+
ij_python_method_parameters_new_line_after_left_paren = true
64+
ij_python_method_parameters_right_paren_on_new_line = true
65+
ij_python_method_parameters_wrap = on_every_item
66+
ij_python_new_line_after_colon = true
67+
ij_python_new_line_after_colon_multi_clause = true
68+
ij_python_optimize_imports_always_split_from_imports = true
69+
ij_python_optimize_imports_case_insensitive_order = false
70+
ij_python_optimize_imports_join_from_imports_with_same_source = false
71+
ij_python_optimize_imports_sort_by_type_first = true
72+
ij_python_optimize_imports_sort_imports = true
73+
ij_python_optimize_imports_sort_names_in_from_imports = false
74+
ij_python_set_new_line_after_left_brace = true
75+
ij_python_set_new_line_before_right_brace = true
76+
ij_python_set_wrapping = on_every_item
77+
ij_python_space_after_comma = true
78+
ij_python_space_after_number_sign = true
79+
ij_python_space_after_py_colon = true
80+
ij_python_space_before_backslash = true
81+
ij_python_space_before_comma = false
82+
ij_python_space_before_for_semicolon = false
83+
ij_python_space_before_lbracket = false
84+
ij_python_space_before_method_call_parentheses = false
85+
ij_python_space_before_method_parentheses = false
86+
ij_python_space_before_number_sign = true
87+
ij_python_space_before_py_colon = false
88+
ij_python_space_within_empty_method_call_parentheses = false
89+
ij_python_space_within_empty_method_parentheses = false
90+
ij_python_spaces_around_additive_operators = true
91+
ij_python_spaces_around_assignment_operators = true
92+
ij_python_spaces_around_bitwise_operators = true
93+
ij_python_spaces_around_eq_in_keyword_argument = false
94+
ij_python_spaces_around_eq_in_named_parameter = false
95+
ij_python_spaces_around_equality_operators = true
96+
ij_python_spaces_around_multiplicative_operators = true
97+
ij_python_spaces_around_power_operator = true
98+
ij_python_spaces_around_relational_operators = true
99+
ij_python_spaces_around_shift_operators = true
100+
ij_python_spaces_within_braces = false
101+
ij_python_spaces_within_brackets = false
102+
ij_python_spaces_within_method_call_parentheses = false
103+
ij_python_spaces_within_method_parentheses = false
104+
ij_python_tuple_new_line_after_left_parenthesis = true
105+
ij_python_tuple_new_line_before_right_parenthesis = true
106+
ij_python_tuple_wrapping = on_every_item
107+
ij_python_use_continuation_indent_for_arguments = false
108+
ij_python_use_continuation_indent_for_collection_and_comprehensions = false
109+
ij_python_use_continuation_indent_for_parameters = true
110+
ij_python_use_trailing_comma_in_arguments_list = false
111+
ij_python_use_trailing_comma_in_collections = false
112+
ij_python_use_trailing_comma_in_parameter_list = false
113+
ij_python_wrap_long_lines = false

0 commit comments

Comments
 (0)