|
1 | 1 | [*] |
2 | | -charset=utf-8 |
3 | | -end_of_line=lf |
4 | | -trim_trailing_whitespace=true |
5 | | -insert_final_newline=true |
6 | | -indent_style=space |
7 | | -indent_size=2 |
| 2 | +charset = utf-8 |
| 3 | +end_of_line = lf |
| 4 | +trim_trailing_whitespace = true |
| 5 | +insert_final_newline = true |
| 6 | +indent_style = space |
| 7 | +indent_size = 2 |
| 8 | +max_line_length = 200 |
| 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 = false |
| 14 | +ij_smart_tabs = false |
| 15 | +ij_visual_guides = none |
| 16 | +ij_wrap_on_typing = false |
| 17 | + |
| 18 | +[*.css] |
| 19 | +ij_css_align_closing_brace_with_properties = false |
| 20 | +ij_css_blank_lines_around_nested_selector = 1 |
| 21 | +ij_css_blank_lines_between_blocks = 1 |
| 22 | +ij_css_brace_placement = end_of_line |
| 23 | +ij_css_enforce_quotes_on_format = false |
| 24 | +ij_css_hex_color_long_format = false |
| 25 | +ij_css_hex_color_lower_case = false |
| 26 | +ij_css_hex_color_short_format = false |
| 27 | +ij_css_hex_color_upper_case = false |
| 28 | +ij_css_keep_blank_lines_in_code = 2 |
| 29 | +ij_css_keep_indents_on_empty_lines = false |
| 30 | +ij_css_keep_single_line_blocks = false |
| 31 | +ij_css_properties_order = font, font-family, font-size, font-weight, font-style, font-variant, font-size-adjust, font-stretch, line-height, position, z-index, top, right, bottom, left, display, visibility, float, clear, overflow, overflow-x, overflow-y, clip, zoom, align-content, align-items, align-self, flex, flex-flow, flex-basis, flex-direction, flex-grow, flex-shrink, flex-wrap, justify-content, order, box-sizing, width, min-width, max-width, height, min-height, max-height, margin, margin-top, margin-right, margin-bottom, margin-left, padding, padding-top, padding-right, padding-bottom, padding-left, table-layout, empty-cells, caption-side, border-spacing, border-collapse, list-style, list-style-position, list-style-type, list-style-image, content, quotes, counter-reset, counter-increment, resize, cursor, user-select, nav-index, nav-up, nav-right, nav-down, nav-left, transition, transition-delay, transition-timing-function, transition-duration, transition-property, transform, transform-origin, animation, animation-name, animation-duration, animation-play-state, animation-timing-function, animation-delay, animation-iteration-count, animation-direction, text-align, text-align-last, vertical-align, white-space, text-decoration, text-emphasis, text-emphasis-color, text-emphasis-style, text-emphasis-position, text-indent, text-justify, letter-spacing, word-spacing, text-outline, text-transform, text-wrap, text-overflow, text-overflow-ellipsis, text-overflow-mode, word-wrap, word-break, tab-size, hyphens, pointer-events, opacity, color, border, border-width, border-style, border-color, border-top, border-top-width, border-top-style, border-top-color, border-right, border-right-width, border-right-style, border-right-color, border-bottom, border-bottom-width, border-bottom-style, border-bottom-color, border-left, border-left-width, border-left-style, border-left-color, border-radius, border-top-left-radius, border-top-right-radius, border-bottom-right-radius, border-bottom-left-radius, border-image, border-image-source, border-image-slice, border-image-width, border-image-outset, border-image-repeat, outline, outline-width, outline-style, outline-color, outline-offset, background, background-color, background-image, background-repeat, background-attachment, background-position, background-position-x, background-position-y, background-clip, background-origin, background-size, box-decoration-break, box-shadow, text-shadow |
| 32 | +ij_css_space_after_colon = true |
| 33 | +ij_css_space_before_opening_brace = true |
| 34 | +ij_css_use_double_quotes = true |
| 35 | +ij_css_value_alignment = do_not_align |
| 36 | + |
| 37 | +[.editorconfig] |
| 38 | +ij_editorconfig_align_group_field_declarations = false |
| 39 | +ij_editorconfig_space_after_colon = false |
| 40 | +ij_editorconfig_space_after_comma = true |
| 41 | +ij_editorconfig_space_before_colon = false |
| 42 | +ij_editorconfig_space_before_comma = false |
| 43 | +ij_editorconfig_spaces_around_assignment_operators = true |
| 44 | + |
| 45 | +[{*.cjs,*.js}] |
| 46 | +max_line_length = 160 |
| 47 | +tab_width = 2 |
| 48 | +ij_continuation_indent_size = 2 |
| 49 | +ij_javascript_align_imports = false |
| 50 | +ij_javascript_align_multiline_array_initializer_expression = false |
| 51 | +ij_javascript_align_multiline_binary_operation = false |
| 52 | +ij_javascript_align_multiline_chained_methods = false |
| 53 | +ij_javascript_align_multiline_extends_list = true |
| 54 | +ij_javascript_align_multiline_for = false |
| 55 | +ij_javascript_align_multiline_parameters = false |
| 56 | +ij_javascript_align_multiline_parameters_in_calls = false |
| 57 | +ij_javascript_align_multiline_ternary_operation = false |
| 58 | +ij_javascript_align_object_properties = 0 |
| 59 | +ij_javascript_align_union_types = false |
| 60 | +ij_javascript_align_var_statements = 0 |
| 61 | +ij_javascript_array_initializer_new_line_after_left_brace = false |
| 62 | +ij_javascript_array_initializer_right_brace_on_new_line = false |
| 63 | +ij_javascript_array_initializer_wrap = off |
| 64 | +ij_javascript_assignment_wrap = off |
| 65 | +ij_javascript_binary_operation_sign_on_next_line = false |
| 66 | +ij_javascript_binary_operation_wrap = off |
| 67 | +ij_javascript_blacklist_imports = rxjs/Rx, node_modules/**, **/node_modules/**, @angular/material, @angular/material/typings/** |
| 68 | +ij_javascript_blank_lines_after_imports = 1 |
| 69 | +ij_javascript_blank_lines_around_class = 1 |
| 70 | +ij_javascript_blank_lines_around_field = 0 |
| 71 | +ij_javascript_blank_lines_around_function = 1 |
| 72 | +ij_javascript_blank_lines_around_method = 1 |
| 73 | +ij_javascript_block_brace_style = end_of_line |
| 74 | +ij_javascript_call_parameters_new_line_after_left_paren = false |
| 75 | +ij_javascript_call_parameters_right_paren_on_new_line = false |
| 76 | +ij_javascript_call_parameters_wrap = off |
| 77 | +ij_javascript_catch_on_new_line = false |
| 78 | +ij_javascript_chained_call_dot_on_new_line = true |
| 79 | +ij_javascript_class_brace_style = end_of_line |
| 80 | +ij_javascript_comma_on_new_line = false |
| 81 | +ij_javascript_do_while_brace_force = if_multiline |
| 82 | +ij_javascript_else_on_new_line = false |
| 83 | +ij_javascript_enforce_trailing_comma = whenmultiline |
| 84 | +ij_javascript_extends_keyword_wrap = off |
| 85 | +ij_javascript_extends_list_wrap = off |
| 86 | +ij_javascript_field_prefix = _ |
| 87 | +ij_javascript_file_name_style = relaxed |
| 88 | +ij_javascript_finally_on_new_line = false |
| 89 | +ij_javascript_for_brace_force = if_multiline |
| 90 | +ij_javascript_for_statement_new_line_after_left_paren = false |
| 91 | +ij_javascript_for_statement_right_paren_on_new_line = false |
| 92 | +ij_javascript_for_statement_wrap = off |
| 93 | +ij_javascript_force_quote_style = true |
| 94 | +ij_javascript_force_semicolon_style = true |
| 95 | +ij_javascript_function_expression_brace_style = end_of_line |
| 96 | +ij_javascript_if_brace_force = if_multiline |
| 97 | +ij_javascript_import_merge_members = global |
| 98 | +ij_javascript_import_prefer_absolute_path = global |
| 99 | +ij_javascript_import_sort_members = true |
| 100 | +ij_javascript_import_sort_module_name = true |
| 101 | +ij_javascript_import_use_node_resolution = false |
| 102 | +ij_javascript_imports_wrap = on_every_item |
| 103 | +ij_javascript_indent_case_from_switch = true |
| 104 | +ij_javascript_indent_chained_calls = true |
| 105 | +ij_javascript_indent_package_children = 0 |
| 106 | +ij_javascript_jsx_attribute_value = braces |
| 107 | +ij_javascript_keep_blank_lines_in_code = 2 |
| 108 | +ij_javascript_keep_first_column_comment = true |
| 109 | +ij_javascript_keep_indents_on_empty_lines = false |
| 110 | +ij_javascript_keep_line_breaks = true |
| 111 | +ij_javascript_keep_simple_blocks_in_one_line = true |
| 112 | +ij_javascript_keep_simple_methods_in_one_line = true |
| 113 | +ij_javascript_line_comment_add_space = true |
| 114 | +ij_javascript_line_comment_at_first_column = false |
| 115 | +ij_javascript_method_brace_style = end_of_line |
| 116 | +ij_javascript_method_call_chain_wrap = off |
| 117 | +ij_javascript_method_parameters_new_line_after_left_paren = false |
| 118 | +ij_javascript_method_parameters_right_paren_on_new_line = false |
| 119 | +ij_javascript_method_parameters_wrap = off |
| 120 | +ij_javascript_object_literal_wrap = on_every_item |
| 121 | +ij_javascript_parentheses_expression_new_line_after_left_paren = false |
| 122 | +ij_javascript_parentheses_expression_right_paren_on_new_line = false |
| 123 | +ij_javascript_place_assignment_sign_on_next_line = false |
| 124 | +ij_javascript_prefer_as_type_cast = false |
| 125 | +ij_javascript_prefer_explicit_types_function_expression_returns = false |
| 126 | +ij_javascript_prefer_explicit_types_function_returns = false |
| 127 | +ij_javascript_prefer_explicit_types_vars_fields = false |
| 128 | +ij_javascript_prefer_parameters_wrap = false |
| 129 | +ij_javascript_reformat_c_style_comments = false |
| 130 | +ij_javascript_space_after_colon = true |
| 131 | +ij_javascript_space_after_comma = true |
| 132 | +ij_javascript_space_after_dots_in_rest_parameter = false |
| 133 | +ij_javascript_space_after_generator_mult = true |
| 134 | +ij_javascript_space_after_property_colon = true |
| 135 | +ij_javascript_space_after_quest = true |
| 136 | +ij_javascript_space_after_type_colon = true |
| 137 | +ij_javascript_space_after_unary_not = false |
| 138 | +ij_javascript_space_before_async_arrow_lparen = true |
| 139 | +ij_javascript_space_before_catch_keyword = true |
| 140 | +ij_javascript_space_before_catch_left_brace = true |
| 141 | +ij_javascript_space_before_catch_parentheses = true |
| 142 | +ij_javascript_space_before_class_lbrace = true |
| 143 | +ij_javascript_space_before_class_left_brace = true |
| 144 | +ij_javascript_space_before_colon = true |
| 145 | +ij_javascript_space_before_comma = false |
| 146 | +ij_javascript_space_before_do_left_brace = true |
| 147 | +ij_javascript_space_before_else_keyword = true |
| 148 | +ij_javascript_space_before_else_left_brace = true |
| 149 | +ij_javascript_space_before_finally_keyword = true |
| 150 | +ij_javascript_space_before_finally_left_brace = true |
| 151 | +ij_javascript_space_before_for_left_brace = true |
| 152 | +ij_javascript_space_before_for_parentheses = true |
| 153 | +ij_javascript_space_before_for_semicolon = false |
| 154 | +ij_javascript_space_before_function_left_parenth = false |
| 155 | +ij_javascript_space_before_generator_mult = false |
| 156 | +ij_javascript_space_before_if_left_brace = true |
| 157 | +ij_javascript_space_before_if_parentheses = true |
| 158 | +ij_javascript_space_before_method_call_parentheses = false |
| 159 | +ij_javascript_space_before_method_left_brace = true |
| 160 | +ij_javascript_space_before_method_parentheses = false |
| 161 | +ij_javascript_space_before_property_colon = false |
| 162 | +ij_javascript_space_before_quest = true |
| 163 | +ij_javascript_space_before_switch_left_brace = true |
| 164 | +ij_javascript_space_before_switch_parentheses = true |
| 165 | +ij_javascript_space_before_try_left_brace = true |
| 166 | +ij_javascript_space_before_type_colon = false |
| 167 | +ij_javascript_space_before_unary_not = false |
| 168 | +ij_javascript_space_before_while_keyword = true |
| 169 | +ij_javascript_space_before_while_left_brace = true |
| 170 | +ij_javascript_space_before_while_parentheses = true |
| 171 | +ij_javascript_spaces_around_additive_operators = true |
| 172 | +ij_javascript_spaces_around_arrow_function_operator = true |
| 173 | +ij_javascript_spaces_around_assignment_operators = true |
| 174 | +ij_javascript_spaces_around_bitwise_operators = true |
| 175 | +ij_javascript_spaces_around_equality_operators = true |
| 176 | +ij_javascript_spaces_around_logical_operators = true |
| 177 | +ij_javascript_spaces_around_multiplicative_operators = true |
| 178 | +ij_javascript_spaces_around_relational_operators = true |
| 179 | +ij_javascript_spaces_around_shift_operators = true |
| 180 | +ij_javascript_spaces_around_unary_operator = false |
| 181 | +ij_javascript_spaces_within_array_initializer_brackets = false |
| 182 | +ij_javascript_spaces_within_brackets = false |
| 183 | +ij_javascript_spaces_within_catch_parentheses = false |
| 184 | +ij_javascript_spaces_within_for_parentheses = false |
| 185 | +ij_javascript_spaces_within_if_parentheses = false |
| 186 | +ij_javascript_spaces_within_imports = false |
| 187 | +ij_javascript_spaces_within_interpolation_expressions = false |
| 188 | +ij_javascript_spaces_within_method_call_parentheses = false |
| 189 | +ij_javascript_spaces_within_method_parentheses = false |
| 190 | +ij_javascript_spaces_within_object_literal_braces = false |
| 191 | +ij_javascript_spaces_within_object_type_braces = true |
| 192 | +ij_javascript_spaces_within_parentheses = false |
| 193 | +ij_javascript_spaces_within_switch_parentheses = false |
| 194 | +ij_javascript_spaces_within_type_assertion = false |
| 195 | +ij_javascript_spaces_within_union_types = true |
| 196 | +ij_javascript_spaces_within_while_parentheses = false |
| 197 | +ij_javascript_special_else_if_treatment = true |
| 198 | +ij_javascript_ternary_operation_signs_on_next_line = true |
| 199 | +ij_javascript_ternary_operation_wrap = off |
| 200 | +ij_javascript_union_types_wrap = on_every_item |
| 201 | +ij_javascript_use_chained_calls_group_indents = false |
| 202 | +ij_javascript_use_double_quotes = false |
| 203 | +ij_javascript_use_explicit_js_extension = true |
| 204 | +ij_javascript_use_path_mapping = always |
| 205 | +ij_javascript_use_public_modifier = true |
| 206 | +ij_javascript_use_semicolon_after_statement = true |
| 207 | +ij_javascript_var_declaration_wrap = split_into_lines |
| 208 | +ij_javascript_while_brace_force = if_multiline |
| 209 | +ij_javascript_while_on_new_line = false |
| 210 | +ij_javascript_wrap_comments = false |
| 211 | + |
| 212 | +[{*.htm,*.html,*.ng,*.sht,*.shtm,*.shtml}] |
| 213 | +max_line_length = 160 |
| 214 | +ij_continuation_indent_size = 4 |
| 215 | +ij_html_add_new_line_before_tags = body, div, p, form, h1, h2, h3 |
| 216 | +ij_html_align_attributes = true |
| 217 | +ij_html_align_text = false |
| 218 | +ij_html_attribute_wrap = split_into_lines |
| 219 | +ij_html_block_comment_at_first_column = true |
| 220 | +ij_html_do_not_align_children_of_min_lines = 0 |
| 221 | +ij_html_do_not_break_if_inline_tags = title, h1, h2, h3, h4, h5, h6, p |
| 222 | +ij_html_do_not_indent_children_of_tags = html, body, thead, tbody, tfoot |
| 223 | +ij_html_enforce_quotes = false |
| 224 | +ij_html_inline_tags = a, abbr, acronym, b, basefont, bdo, big, br, cite, cite, code, dfn, em, font, i, img, input, kbd, label, q, s, samp, select, small, span, strike, strong, sub, sup, textarea, tt, u, var |
| 225 | +ij_html_keep_blank_lines = 2 |
| 226 | +ij_html_keep_indents_on_empty_lines = false |
| 227 | +ij_html_keep_line_breaks = true |
| 228 | +ij_html_keep_line_breaks_in_text = true |
| 229 | +ij_html_keep_whitespaces = false |
| 230 | +ij_html_keep_whitespaces_inside = span, pre, textarea |
| 231 | +ij_html_line_comment_at_first_column = true |
| 232 | +ij_html_new_line_after_last_attribute = never |
| 233 | +ij_html_new_line_before_first_attribute = never |
| 234 | +ij_html_quote_style = double |
| 235 | +ij_html_remove_new_line_before_tags = br |
| 236 | +ij_html_space_after_tag_name = false |
| 237 | +ij_html_space_around_equality_in_attribute = false |
| 238 | +ij_html_space_inside_empty_tag = false |
| 239 | +ij_html_text_wrap = normal |
| 240 | + |
| 241 | +[{*.markdown,*.md}] |
| 242 | +ij_markdown_force_one_space_after_blockquote_symbol = true |
| 243 | +ij_markdown_force_one_space_after_header_symbol = true |
| 244 | +ij_markdown_force_one_space_after_list_bullet = true |
| 245 | +ij_markdown_force_one_space_between_words = true |
| 246 | +ij_markdown_keep_indents_on_empty_lines = false |
| 247 | +ij_markdown_max_lines_around_block_elements = 1 |
| 248 | +ij_markdown_max_lines_around_header = 1 |
| 249 | +ij_markdown_max_lines_between_paragraphs = 1 |
| 250 | +ij_markdown_min_lines_around_block_elements = 1 |
| 251 | +ij_markdown_min_lines_around_header = 1 |
| 252 | +ij_markdown_min_lines_between_paragraphs = 1 |
| 253 | + |
| 254 | +[{*.py,*.pyw}] |
| 255 | +indent_size = 4 |
| 256 | +ij_python_align_collections_and_comprehensions = true |
| 257 | +ij_python_align_multiline_imports = true |
| 258 | +ij_python_align_multiline_parameters = true |
| 259 | +ij_python_align_multiline_parameters_in_calls = true |
| 260 | +ij_python_blank_line_at_file_end = true |
| 261 | +ij_python_blank_lines_after_imports = 1 |
| 262 | +ij_python_blank_lines_after_local_imports = 0 |
| 263 | +ij_python_blank_lines_around_class = 1 |
| 264 | +ij_python_blank_lines_around_method = 1 |
| 265 | +ij_python_blank_lines_around_top_level_classes_functions = 2 |
| 266 | +ij_python_blank_lines_before_first_method = 0 |
| 267 | +ij_python_call_parameters_new_line_after_left_paren = false |
| 268 | +ij_python_call_parameters_right_paren_on_new_line = false |
| 269 | +ij_python_call_parameters_wrap = normal |
| 270 | +ij_python_dict_alignment = 0 |
| 271 | +ij_python_dict_new_line_after_left_brace = false |
| 272 | +ij_python_dict_new_line_before_right_brace = false |
| 273 | +ij_python_dict_wrapping = 1 |
| 274 | +ij_python_from_import_new_line_after_left_parenthesis = false |
| 275 | +ij_python_from_import_new_line_before_right_parenthesis = false |
| 276 | +ij_python_from_import_parentheses_force_if_multiline = false |
| 277 | +ij_python_from_import_trailing_comma_if_multiline = false |
| 278 | +ij_python_from_import_wrapping = 1 |
| 279 | +ij_python_hang_closing_brackets = false |
| 280 | +ij_python_keep_blank_lines_in_code = 1 |
| 281 | +ij_python_keep_blank_lines_in_declarations = 1 |
| 282 | +ij_python_keep_indents_on_empty_lines = false |
| 283 | +ij_python_keep_line_breaks = true |
| 284 | +ij_python_method_parameters_new_line_after_left_paren = false |
| 285 | +ij_python_method_parameters_right_paren_on_new_line = false |
| 286 | +ij_python_method_parameters_wrap = normal |
| 287 | +ij_python_new_line_after_colon = false |
| 288 | +ij_python_new_line_after_colon_multi_clause = true |
| 289 | +ij_python_optimize_imports_always_split_from_imports = false |
| 290 | +ij_python_optimize_imports_case_insensitive_order = false |
| 291 | +ij_python_optimize_imports_join_from_imports_with_same_source = false |
| 292 | +ij_python_optimize_imports_sort_by_type_first = true |
| 293 | +ij_python_optimize_imports_sort_imports = true |
| 294 | +ij_python_optimize_imports_sort_names_in_from_imports = false |
| 295 | +ij_python_space_after_comma = true |
| 296 | +ij_python_space_after_number_sign = true |
| 297 | +ij_python_space_after_py_colon = true |
| 298 | +ij_python_space_before_backslash = true |
| 299 | +ij_python_space_before_comma = false |
| 300 | +ij_python_space_before_for_semicolon = false |
| 301 | +ij_python_space_before_lbracket = false |
| 302 | +ij_python_space_before_method_call_parentheses = false |
| 303 | +ij_python_space_before_method_parentheses = false |
| 304 | +ij_python_space_before_number_sign = true |
| 305 | +ij_python_space_before_py_colon = false |
| 306 | +ij_python_space_within_empty_method_call_parentheses = false |
| 307 | +ij_python_space_within_empty_method_parentheses = false |
| 308 | +ij_python_spaces_around_additive_operators = true |
| 309 | +ij_python_spaces_around_assignment_operators = true |
| 310 | +ij_python_spaces_around_bitwise_operators = true |
| 311 | +ij_python_spaces_around_eq_in_keyword_argument = false |
| 312 | +ij_python_spaces_around_eq_in_named_parameter = false |
| 313 | +ij_python_spaces_around_equality_operators = true |
| 314 | +ij_python_spaces_around_multiplicative_operators = true |
| 315 | +ij_python_spaces_around_power_operator = true |
| 316 | +ij_python_spaces_around_relational_operators = true |
| 317 | +ij_python_spaces_around_shift_operators = true |
| 318 | +ij_python_spaces_within_braces = false |
| 319 | +ij_python_spaces_within_brackets = false |
| 320 | +ij_python_spaces_within_method_call_parentheses = false |
| 321 | +ij_python_spaces_within_method_parentheses = false |
| 322 | +ij_python_use_continuation_indent_for_arguments = false |
| 323 | +ij_python_use_continuation_indent_for_collection_and_comprehensions = false |
| 324 | +ij_python_use_continuation_indent_for_parameters = true |
| 325 | +ij_python_wrap_long_lines = false |
| 326 | + |
| 327 | +[{*.yaml,*.yml}] |
| 328 | +indent_size = 2 |
| 329 | +ij_yaml_align_values_properties = do_not_align |
| 330 | +ij_yaml_autoinsert_sequence_marker = true |
| 331 | +ij_yaml_block_mapping_on_new_line = false |
| 332 | +ij_yaml_indent_sequence_value = true |
| 333 | +ij_yaml_keep_indents_on_empty_lines = false |
| 334 | +ij_yaml_keep_line_breaks = true |
| 335 | +ij_yaml_sequence_on_new_line = false |
| 336 | +ij_yaml_space_before_colon = false |
| 337 | +ij_yaml_spaces_within_braces = true |
| 338 | +ij_yaml_spaces_within_brackets = true |
0 commit comments