@caspertech/node-metaverse 0.7.24 → 0.7.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.editorconfig +817 -817
- package/.eslintrc +224 -224
- package/IdeaCodeStyle.xml +68 -68
- package/LICENSE +21 -21
- package/README.md +78 -78
- package/dist/keepme.txt +0 -0
- package/dist/lib/classes/llsd/LLSDNotationParser.spec.js +46 -46
- package/examples/Camera/Camera.ts +24 -24
- package/examples/ExampleBot.ts +178 -178
- package/examples/Friends/Friends.ts +67 -67
- package/examples/Grid/Name2Key.ts +50 -50
- package/examples/Groups/Group.ts +102 -102
- package/examples/Groups/GroupChat.ts +112 -112
- package/examples/InstantMessages/InstantMessages.ts +41 -41
- package/examples/Inventory/Inventory.ts +175 -175
- package/examples/MFA/MFA.ts +55 -55
- package/examples/Money/Money.ts +63 -63
- package/examples/Objects/TaskInventory.ts +35 -35
- package/examples/Region/Agents.ts +81 -81
- package/examples/Region/Estate.ts +34 -34
- package/examples/Region/Parcels.ts +31 -31
- package/examples/Region/Region.ts +23 -23
- package/examples/Teleports/Teleports.ts +60 -60
- package/package.json +71 -71
package/.editorconfig
CHANGED
|
@@ -1,817 +1,817 @@
|
|
|
1
|
-
[*]
|
|
2
|
-
charset = utf-8
|
|
3
|
-
end_of_line = lf
|
|
4
|
-
indent_size = 4
|
|
5
|
-
indent_style = space
|
|
6
|
-
insert_final_newline = true
|
|
7
|
-
max_line_length = 120
|
|
8
|
-
tab_width = 4
|
|
9
|
-
trim_trailing_whitespace = true
|
|
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
|
-
[*.blade.php]
|
|
19
|
-
ij_blade_keep_indents_on_empty_lines = false
|
|
20
|
-
|
|
21
|
-
[*.css]
|
|
22
|
-
ij_css_align_closing_brace_with_properties = false
|
|
23
|
-
ij_css_blank_lines_around_nested_selector = 1
|
|
24
|
-
ij_css_blank_lines_between_blocks = 1
|
|
25
|
-
ij_css_block_comment_add_space = false
|
|
26
|
-
ij_css_brace_placement = end_of_line
|
|
27
|
-
ij_css_enforce_quotes_on_format = false
|
|
28
|
-
ij_css_hex_color_long_format = false
|
|
29
|
-
ij_css_hex_color_lower_case = false
|
|
30
|
-
ij_css_hex_color_short_format = false
|
|
31
|
-
ij_css_hex_color_upper_case = false
|
|
32
|
-
ij_css_keep_blank_lines_in_code = 2
|
|
33
|
-
ij_css_keep_indents_on_empty_lines = false
|
|
34
|
-
ij_css_keep_single_line_blocks = false
|
|
35
|
-
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
|
|
36
|
-
ij_css_space_after_colon = true
|
|
37
|
-
ij_css_space_before_opening_brace = true
|
|
38
|
-
ij_css_use_double_quotes = true
|
|
39
|
-
ij_css_value_alignment = do_not_align
|
|
40
|
-
|
|
41
|
-
[*.feature]
|
|
42
|
-
indent_size = 2
|
|
43
|
-
ij_gherkin_keep_indents_on_empty_lines = false
|
|
44
|
-
|
|
45
|
-
[*.less]
|
|
46
|
-
indent_size = 2
|
|
47
|
-
ij_less_align_closing_brace_with_properties = false
|
|
48
|
-
ij_less_blank_lines_around_nested_selector = 1
|
|
49
|
-
ij_less_blank_lines_between_blocks = 1
|
|
50
|
-
ij_less_block_comment_add_space = false
|
|
51
|
-
ij_less_brace_placement = 0
|
|
52
|
-
ij_less_enforce_quotes_on_format = false
|
|
53
|
-
ij_less_hex_color_long_format = false
|
|
54
|
-
ij_less_hex_color_lower_case = false
|
|
55
|
-
ij_less_hex_color_short_format = false
|
|
56
|
-
ij_less_hex_color_upper_case = false
|
|
57
|
-
ij_less_keep_blank_lines_in_code = 2
|
|
58
|
-
ij_less_keep_indents_on_empty_lines = false
|
|
59
|
-
ij_less_keep_single_line_blocks = false
|
|
60
|
-
ij_less_line_comment_add_space = false
|
|
61
|
-
ij_less_line_comment_at_first_column = false
|
|
62
|
-
ij_less_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
|
|
63
|
-
ij_less_space_after_colon = true
|
|
64
|
-
ij_less_space_before_opening_brace = true
|
|
65
|
-
ij_less_use_double_quotes = true
|
|
66
|
-
ij_less_value_alignment = 0
|
|
67
|
-
|
|
68
|
-
[*.sass]
|
|
69
|
-
indent_size = 2
|
|
70
|
-
ij_sass_align_closing_brace_with_properties = false
|
|
71
|
-
ij_sass_blank_lines_around_nested_selector = 1
|
|
72
|
-
ij_sass_blank_lines_between_blocks = 1
|
|
73
|
-
ij_sass_brace_placement = 0
|
|
74
|
-
ij_sass_enforce_quotes_on_format = false
|
|
75
|
-
ij_sass_hex_color_long_format = false
|
|
76
|
-
ij_sass_hex_color_lower_case = false
|
|
77
|
-
ij_sass_hex_color_short_format = false
|
|
78
|
-
ij_sass_hex_color_upper_case = false
|
|
79
|
-
ij_sass_keep_blank_lines_in_code = 2
|
|
80
|
-
ij_sass_keep_indents_on_empty_lines = false
|
|
81
|
-
ij_sass_keep_single_line_blocks = false
|
|
82
|
-
ij_sass_line_comment_add_space = false
|
|
83
|
-
ij_sass_line_comment_at_first_column = false
|
|
84
|
-
ij_sass_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
|
|
85
|
-
ij_sass_space_after_colon = true
|
|
86
|
-
ij_sass_space_before_opening_brace = true
|
|
87
|
-
ij_sass_use_double_quotes = true
|
|
88
|
-
ij_sass_value_alignment = 0
|
|
89
|
-
|
|
90
|
-
[*.scss]
|
|
91
|
-
indent_size = 2
|
|
92
|
-
ij_scss_align_closing_brace_with_properties = false
|
|
93
|
-
ij_scss_blank_lines_around_nested_selector = 1
|
|
94
|
-
ij_scss_blank_lines_between_blocks = 1
|
|
95
|
-
ij_scss_block_comment_add_space = false
|
|
96
|
-
ij_scss_brace_placement = 0
|
|
97
|
-
ij_scss_enforce_quotes_on_format = false
|
|
98
|
-
ij_scss_hex_color_long_format = false
|
|
99
|
-
ij_scss_hex_color_lower_case = false
|
|
100
|
-
ij_scss_hex_color_short_format = false
|
|
101
|
-
ij_scss_hex_color_upper_case = false
|
|
102
|
-
ij_scss_keep_blank_lines_in_code = 2
|
|
103
|
-
ij_scss_keep_indents_on_empty_lines = false
|
|
104
|
-
ij_scss_keep_single_line_blocks = false
|
|
105
|
-
ij_scss_line_comment_add_space = false
|
|
106
|
-
ij_scss_line_comment_at_first_column = false
|
|
107
|
-
ij_scss_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
|
|
108
|
-
ij_scss_space_after_colon = true
|
|
109
|
-
ij_scss_space_before_opening_brace = true
|
|
110
|
-
ij_scss_use_double_quotes = true
|
|
111
|
-
ij_scss_value_alignment = 0
|
|
112
|
-
|
|
113
|
-
[*.twig]
|
|
114
|
-
ij_twig_keep_indents_on_empty_lines = false
|
|
115
|
-
ij_twig_spaces_inside_comments_delimiters = true
|
|
116
|
-
ij_twig_spaces_inside_delimiters = true
|
|
117
|
-
ij_twig_spaces_inside_variable_delimiters = true
|
|
118
|
-
|
|
119
|
-
[*.vue]
|
|
120
|
-
indent_size = 2
|
|
121
|
-
tab_width = 2
|
|
122
|
-
ij_continuation_indent_size = 4
|
|
123
|
-
ij_vue_indent_children_of_top_level = template
|
|
124
|
-
ij_vue_interpolation_new_line_after_start_delimiter = true
|
|
125
|
-
ij_vue_interpolation_new_line_before_end_delimiter = true
|
|
126
|
-
ij_vue_interpolation_wrap = off
|
|
127
|
-
ij_vue_keep_indents_on_empty_lines = false
|
|
128
|
-
ij_vue_spaces_within_interpolation_expressions = true
|
|
129
|
-
|
|
130
|
-
[.editorconfig]
|
|
131
|
-
ij_editorconfig_align_group_field_declarations = false
|
|
132
|
-
ij_editorconfig_space_after_colon = false
|
|
133
|
-
ij_editorconfig_space_after_comma = true
|
|
134
|
-
ij_editorconfig_space_before_colon = false
|
|
135
|
-
ij_editorconfig_space_before_comma = false
|
|
136
|
-
ij_editorconfig_spaces_around_assignment_operators = true
|
|
137
|
-
|
|
138
|
-
[{*.ant,*.fxml,*.jhm,*.jnlp,*.jrxml,*.rng,*.tld,*.wsdl,*.xml,*.xsd,*.xsl,*.xslt,*.xul,phpunit.xml.dist}]
|
|
139
|
-
ij_xml_align_attributes = true
|
|
140
|
-
ij_xml_align_text = false
|
|
141
|
-
ij_xml_attribute_wrap = normal
|
|
142
|
-
ij_xml_block_comment_add_space = false
|
|
143
|
-
ij_xml_block_comment_at_first_column = true
|
|
144
|
-
ij_xml_keep_blank_lines = 2
|
|
145
|
-
ij_xml_keep_indents_on_empty_lines = false
|
|
146
|
-
ij_xml_keep_line_breaks = true
|
|
147
|
-
ij_xml_keep_line_breaks_in_text = true
|
|
148
|
-
ij_xml_keep_whitespaces = false
|
|
149
|
-
ij_xml_keep_whitespaces_around_cdata = preserve
|
|
150
|
-
ij_xml_keep_whitespaces_inside_cdata = false
|
|
151
|
-
ij_xml_line_comment_at_first_column = true
|
|
152
|
-
ij_xml_space_after_tag_name = false
|
|
153
|
-
ij_xml_space_around_equals_in_attribute = false
|
|
154
|
-
ij_xml_space_inside_empty_tag = false
|
|
155
|
-
ij_xml_text_wrap = normal
|
|
156
|
-
|
|
157
|
-
[{*.ats,*.cts,*.mts,*.ts}]
|
|
158
|
-
ij_continuation_indent_size = 4
|
|
159
|
-
ij_typescript_align_imports = false
|
|
160
|
-
ij_typescript_align_multiline_array_initializer_expression = false
|
|
161
|
-
ij_typescript_align_multiline_binary_operation = false
|
|
162
|
-
ij_typescript_align_multiline_chained_methods = false
|
|
163
|
-
ij_typescript_align_multiline_extends_list = false
|
|
164
|
-
ij_typescript_align_multiline_for = true
|
|
165
|
-
ij_typescript_align_multiline_parameters = true
|
|
166
|
-
ij_typescript_align_multiline_parameters_in_calls = false
|
|
167
|
-
ij_typescript_align_multiline_ternary_operation = false
|
|
168
|
-
ij_typescript_align_object_properties = 0
|
|
169
|
-
ij_typescript_align_union_types = false
|
|
170
|
-
ij_typescript_align_var_statements = 0
|
|
171
|
-
ij_typescript_array_initializer_new_line_after_left_brace = false
|
|
172
|
-
ij_typescript_array_initializer_right_brace_on_new_line = false
|
|
173
|
-
ij_typescript_array_initializer_wrap = off
|
|
174
|
-
ij_typescript_assignment_wrap = off
|
|
175
|
-
ij_typescript_binary_operation_sign_on_next_line = false
|
|
176
|
-
ij_typescript_binary_operation_wrap = off
|
|
177
|
-
ij_typescript_blacklist_imports = rxjs/Rx,node_modules/**,**/node_modules/**,@angular/material,@angular/material/typings/**
|
|
178
|
-
ij_typescript_blank_lines_after_imports = 1
|
|
179
|
-
ij_typescript_blank_lines_around_class = 1
|
|
180
|
-
ij_typescript_blank_lines_around_field = 0
|
|
181
|
-
ij_typescript_blank_lines_around_field_in_interface = 0
|
|
182
|
-
ij_typescript_blank_lines_around_function = 1
|
|
183
|
-
ij_typescript_blank_lines_around_method = 1
|
|
184
|
-
ij_typescript_blank_lines_around_method_in_interface = 1
|
|
185
|
-
ij_typescript_block_brace_style = next_line
|
|
186
|
-
ij_typescript_block_comment_add_space = false
|
|
187
|
-
ij_typescript_block_comment_at_first_column = true
|
|
188
|
-
ij_typescript_call_parameters_new_line_after_left_paren = false
|
|
189
|
-
ij_typescript_call_parameters_right_paren_on_new_line = false
|
|
190
|
-
ij_typescript_call_parameters_wrap = off
|
|
191
|
-
ij_typescript_catch_on_new_line = true
|
|
192
|
-
ij_typescript_chained_call_dot_on_new_line = true
|
|
193
|
-
ij_typescript_class_brace_style = next_line
|
|
194
|
-
ij_typescript_comma_on_new_line = false
|
|
195
|
-
ij_typescript_do_while_brace_force = always
|
|
196
|
-
ij_typescript_else_on_new_line = true
|
|
197
|
-
ij_typescript_enforce_trailing_comma = whenmultiline
|
|
198
|
-
ij_typescript_enum_constants_wrap = on_every_item
|
|
199
|
-
ij_typescript_extends_keyword_wrap = off
|
|
200
|
-
ij_typescript_extends_list_wrap = off
|
|
201
|
-
ij_typescript_field_prefix = _
|
|
202
|
-
ij_typescript_file_name_style = relaxed
|
|
203
|
-
ij_typescript_finally_on_new_line = true
|
|
204
|
-
ij_typescript_for_brace_force = always
|
|
205
|
-
ij_typescript_for_statement_new_line_after_left_paren = false
|
|
206
|
-
ij_typescript_for_statement_right_paren_on_new_line = false
|
|
207
|
-
ij_typescript_for_statement_wrap = off
|
|
208
|
-
ij_typescript_force_quote_style = true
|
|
209
|
-
ij_typescript_force_semicolon_style = false
|
|
210
|
-
ij_typescript_function_expression_brace_style = next_line
|
|
211
|
-
ij_typescript_if_brace_force = never
|
|
212
|
-
ij_typescript_import_merge_members = global
|
|
213
|
-
ij_typescript_import_prefer_absolute_path = global
|
|
214
|
-
ij_typescript_import_sort_members = true
|
|
215
|
-
ij_typescript_import_sort_module_name = false
|
|
216
|
-
ij_typescript_import_use_node_resolution = true
|
|
217
|
-
ij_typescript_imports_wrap = on_every_item
|
|
218
|
-
ij_typescript_indent_case_from_switch = true
|
|
219
|
-
ij_typescript_indent_chained_calls = true
|
|
220
|
-
ij_typescript_indent_package_children = 0
|
|
221
|
-
ij_typescript_jsdoc_include_types = false
|
|
222
|
-
ij_typescript_jsx_attribute_value = braces
|
|
223
|
-
ij_typescript_keep_blank_lines_in_code = 2
|
|
224
|
-
ij_typescript_keep_first_column_comment = true
|
|
225
|
-
ij_typescript_keep_indents_on_empty_lines = false
|
|
226
|
-
ij_typescript_keep_line_breaks = true
|
|
227
|
-
ij_typescript_keep_simple_blocks_in_one_line = false
|
|
228
|
-
ij_typescript_keep_simple_methods_in_one_line = false
|
|
229
|
-
ij_typescript_line_comment_add_space = true
|
|
230
|
-
ij_typescript_line_comment_at_first_column = false
|
|
231
|
-
ij_typescript_method_brace_style = next_line
|
|
232
|
-
ij_typescript_method_call_chain_wrap = off
|
|
233
|
-
ij_typescript_method_parameters_new_line_after_left_paren = false
|
|
234
|
-
ij_typescript_method_parameters_right_paren_on_new_line = false
|
|
235
|
-
ij_typescript_method_parameters_wrap = off
|
|
236
|
-
ij_typescript_object_literal_wrap = on_every_item
|
|
237
|
-
ij_typescript_object_types_wrap = on_every_item
|
|
238
|
-
ij_typescript_parentheses_expression_new_line_after_left_paren = false
|
|
239
|
-
ij_typescript_parentheses_expression_right_paren_on_new_line = false
|
|
240
|
-
ij_typescript_place_assignment_sign_on_next_line = false
|
|
241
|
-
ij_typescript_prefer_as_type_cast = true
|
|
242
|
-
ij_typescript_prefer_explicit_types_function_expression_returns = false
|
|
243
|
-
ij_typescript_prefer_explicit_types_function_returns = false
|
|
244
|
-
ij_typescript_prefer_explicit_types_vars_fields = false
|
|
245
|
-
ij_typescript_prefer_parameters_wrap = false
|
|
246
|
-
ij_typescript_property_prefix =
|
|
247
|
-
ij_typescript_reformat_c_style_comments = false
|
|
248
|
-
ij_typescript_space_after_colon = true
|
|
249
|
-
ij_typescript_space_after_comma = true
|
|
250
|
-
ij_typescript_space_after_dots_in_rest_parameter = false
|
|
251
|
-
ij_typescript_space_after_generator_mult = true
|
|
252
|
-
ij_typescript_space_after_property_colon = true
|
|
253
|
-
ij_typescript_space_after_quest = true
|
|
254
|
-
ij_typescript_space_after_type_colon = true
|
|
255
|
-
ij_typescript_space_after_unary_not = false
|
|
256
|
-
ij_typescript_space_before_async_arrow_lparen = false
|
|
257
|
-
ij_typescript_space_before_catch_keyword = true
|
|
258
|
-
ij_typescript_space_before_catch_left_brace = true
|
|
259
|
-
ij_typescript_space_before_catch_parentheses = true
|
|
260
|
-
ij_typescript_space_before_class_lbrace = true
|
|
261
|
-
ij_typescript_space_before_class_left_brace = true
|
|
262
|
-
ij_typescript_space_before_colon = true
|
|
263
|
-
ij_typescript_space_before_comma = false
|
|
264
|
-
ij_typescript_space_before_do_left_brace = true
|
|
265
|
-
ij_typescript_space_before_else_keyword = true
|
|
266
|
-
ij_typescript_space_before_else_left_brace = true
|
|
267
|
-
ij_typescript_space_before_finally_keyword = true
|
|
268
|
-
ij_typescript_space_before_finally_left_brace = true
|
|
269
|
-
ij_typescript_space_before_for_left_brace = true
|
|
270
|
-
ij_typescript_space_before_for_parentheses = true
|
|
271
|
-
ij_typescript_space_before_for_semicolon = false
|
|
272
|
-
ij_typescript_space_before_function_left_parenth = true
|
|
273
|
-
ij_typescript_space_before_generator_mult = false
|
|
274
|
-
ij_typescript_space_before_if_left_brace = true
|
|
275
|
-
ij_typescript_space_before_if_parentheses = true
|
|
276
|
-
ij_typescript_space_before_method_call_parentheses = false
|
|
277
|
-
ij_typescript_space_before_method_left_brace = true
|
|
278
|
-
ij_typescript_space_before_method_parentheses = false
|
|
279
|
-
ij_typescript_space_before_property_colon = false
|
|
280
|
-
ij_typescript_space_before_quest = true
|
|
281
|
-
ij_typescript_space_before_switch_left_brace = true
|
|
282
|
-
ij_typescript_space_before_switch_parentheses = true
|
|
283
|
-
ij_typescript_space_before_try_left_brace = true
|
|
284
|
-
ij_typescript_space_before_type_colon = false
|
|
285
|
-
ij_typescript_space_before_unary_not = false
|
|
286
|
-
ij_typescript_space_before_while_keyword = true
|
|
287
|
-
ij_typescript_space_before_while_left_brace = true
|
|
288
|
-
ij_typescript_space_before_while_parentheses = true
|
|
289
|
-
ij_typescript_spaces_around_additive_operators = true
|
|
290
|
-
ij_typescript_spaces_around_arrow_function_operator = true
|
|
291
|
-
ij_typescript_spaces_around_assignment_operators = true
|
|
292
|
-
ij_typescript_spaces_around_bitwise_operators = true
|
|
293
|
-
ij_typescript_spaces_around_equality_operators = true
|
|
294
|
-
ij_typescript_spaces_around_logical_operators = true
|
|
295
|
-
ij_typescript_spaces_around_multiplicative_operators = true
|
|
296
|
-
ij_typescript_spaces_around_relational_operators = true
|
|
297
|
-
ij_typescript_spaces_around_shift_operators = true
|
|
298
|
-
ij_typescript_spaces_around_unary_operator = false
|
|
299
|
-
ij_typescript_spaces_within_array_initializer_brackets = false
|
|
300
|
-
ij_typescript_spaces_within_brackets = false
|
|
301
|
-
ij_typescript_spaces_within_catch_parentheses = false
|
|
302
|
-
ij_typescript_spaces_within_for_parentheses = false
|
|
303
|
-
ij_typescript_spaces_within_if_parentheses = false
|
|
304
|
-
ij_typescript_spaces_within_imports = true
|
|
305
|
-
ij_typescript_spaces_within_interpolation_expressions = false
|
|
306
|
-
ij_typescript_spaces_within_method_call_parentheses = false
|
|
307
|
-
ij_typescript_spaces_within_method_parentheses = false
|
|
308
|
-
ij_typescript_spaces_within_object_literal_braces = true
|
|
309
|
-
ij_typescript_spaces_within_object_type_braces = true
|
|
310
|
-
ij_typescript_spaces_within_parentheses = false
|
|
311
|
-
ij_typescript_spaces_within_switch_parentheses = false
|
|
312
|
-
ij_typescript_spaces_within_type_assertion = false
|
|
313
|
-
ij_typescript_spaces_within_union_types = true
|
|
314
|
-
ij_typescript_spaces_within_while_parentheses = false
|
|
315
|
-
ij_typescript_special_else_if_treatment = true
|
|
316
|
-
ij_typescript_ternary_operation_signs_on_next_line = false
|
|
317
|
-
ij_typescript_ternary_operation_wrap = off
|
|
318
|
-
ij_typescript_union_types_wrap = on_every_item
|
|
319
|
-
ij_typescript_use_chained_calls_group_indents = false
|
|
320
|
-
ij_typescript_use_double_quotes = false
|
|
321
|
-
ij_typescript_use_explicit_js_extension = auto
|
|
322
|
-
ij_typescript_use_path_mapping = always
|
|
323
|
-
ij_typescript_use_public_modifier = true
|
|
324
|
-
ij_typescript_use_semicolon_after_statement = true
|
|
325
|
-
ij_typescript_var_declaration_wrap = normal
|
|
326
|
-
ij_typescript_while_brace_force = always
|
|
327
|
-
ij_typescript_while_on_new_line = true
|
|
328
|
-
ij_typescript_wrap_comments = false
|
|
329
|
-
|
|
330
|
-
[{*.bash,*.sh,*.zsh}]
|
|
331
|
-
indent_size = 2
|
|
332
|
-
tab_width = 2
|
|
333
|
-
ij_shell_binary_ops_start_line = false
|
|
334
|
-
ij_shell_keep_column_alignment_padding = false
|
|
335
|
-
ij_shell_minify_program = false
|
|
336
|
-
ij_shell_redirect_followed_by_space = false
|
|
337
|
-
ij_shell_switch_cases_indented = false
|
|
338
|
-
ij_shell_use_unix_line_separator = true
|
|
339
|
-
|
|
340
|
-
[{*.cjs,*.js}]
|
|
341
|
-
ij_continuation_indent_size = 4
|
|
342
|
-
ij_javascript_align_imports = false
|
|
343
|
-
ij_javascript_align_multiline_array_initializer_expression = true
|
|
344
|
-
ij_javascript_align_multiline_binary_operation = false
|
|
345
|
-
ij_javascript_align_multiline_chained_methods = true
|
|
346
|
-
ij_javascript_align_multiline_extends_list = false
|
|
347
|
-
ij_javascript_align_multiline_for = true
|
|
348
|
-
ij_javascript_align_multiline_parameters = true
|
|
349
|
-
ij_javascript_align_multiline_parameters_in_calls = false
|
|
350
|
-
ij_javascript_align_multiline_ternary_operation = true
|
|
351
|
-
ij_javascript_align_object_properties = 1
|
|
352
|
-
ij_javascript_align_union_types = false
|
|
353
|
-
ij_javascript_align_var_statements = 2
|
|
354
|
-
ij_javascript_array_initializer_new_line_after_left_brace = false
|
|
355
|
-
ij_javascript_array_initializer_right_brace_on_new_line = false
|
|
356
|
-
ij_javascript_array_initializer_wrap = on_every_item
|
|
357
|
-
ij_javascript_assignment_wrap = off
|
|
358
|
-
ij_javascript_binary_operation_sign_on_next_line = false
|
|
359
|
-
ij_javascript_binary_operation_wrap = off
|
|
360
|
-
ij_javascript_blacklist_imports = rxjs/Rx,node_modules/**,**/node_modules/**,@angular/material,@angular/material/typings/**
|
|
361
|
-
ij_javascript_blank_lines_after_imports = 1
|
|
362
|
-
ij_javascript_blank_lines_around_class = 1
|
|
363
|
-
ij_javascript_blank_lines_around_field = 0
|
|
364
|
-
ij_javascript_blank_lines_around_function = 1
|
|
365
|
-
ij_javascript_blank_lines_around_method = 1
|
|
366
|
-
ij_javascript_block_brace_style = next_line
|
|
367
|
-
ij_javascript_block_comment_add_space = false
|
|
368
|
-
ij_javascript_block_comment_at_first_column = true
|
|
369
|
-
ij_javascript_call_parameters_new_line_after_left_paren = false
|
|
370
|
-
ij_javascript_call_parameters_right_paren_on_new_line = false
|
|
371
|
-
ij_javascript_call_parameters_wrap = off
|
|
372
|
-
ij_javascript_catch_on_new_line = true
|
|
373
|
-
ij_javascript_chained_call_dot_on_new_line = true
|
|
374
|
-
ij_javascript_class_brace_style = next_line
|
|
375
|
-
ij_javascript_comma_on_new_line = false
|
|
376
|
-
ij_javascript_do_while_brace_force = if_multiline
|
|
377
|
-
ij_javascript_else_on_new_line = true
|
|
378
|
-
ij_javascript_enforce_trailing_comma = keep
|
|
379
|
-
ij_javascript_extends_keyword_wrap = off
|
|
380
|
-
ij_javascript_extends_list_wrap = off
|
|
381
|
-
ij_javascript_field_prefix = _
|
|
382
|
-
ij_javascript_file_name_style = relaxed
|
|
383
|
-
ij_javascript_finally_on_new_line = true
|
|
384
|
-
ij_javascript_for_brace_force = if_multiline
|
|
385
|
-
ij_javascript_for_statement_new_line_after_left_paren = false
|
|
386
|
-
ij_javascript_for_statement_right_paren_on_new_line = false
|
|
387
|
-
ij_javascript_for_statement_wrap = off
|
|
388
|
-
ij_javascript_force_quote_style = false
|
|
389
|
-
ij_javascript_force_semicolon_style = false
|
|
390
|
-
ij_javascript_function_expression_brace_style = next_line
|
|
391
|
-
ij_javascript_if_brace_force = if_multiline
|
|
392
|
-
ij_javascript_import_merge_members = global
|
|
393
|
-
ij_javascript_import_prefer_absolute_path = global
|
|
394
|
-
ij_javascript_import_sort_members = true
|
|
395
|
-
ij_javascript_import_sort_module_name = false
|
|
396
|
-
ij_javascript_import_use_node_resolution = true
|
|
397
|
-
ij_javascript_imports_wrap = on_every_item
|
|
398
|
-
ij_javascript_indent_case_from_switch = true
|
|
399
|
-
ij_javascript_indent_chained_calls = true
|
|
400
|
-
ij_javascript_indent_package_children = 0
|
|
401
|
-
ij_javascript_jsx_attribute_value = braces
|
|
402
|
-
ij_javascript_keep_blank_lines_in_code = 1
|
|
403
|
-
ij_javascript_keep_first_column_comment = true
|
|
404
|
-
ij_javascript_keep_indents_on_empty_lines = false
|
|
405
|
-
ij_javascript_keep_line_breaks = true
|
|
406
|
-
ij_javascript_keep_simple_blocks_in_one_line = false
|
|
407
|
-
ij_javascript_keep_simple_methods_in_one_line = false
|
|
408
|
-
ij_javascript_line_comment_add_space = true
|
|
409
|
-
ij_javascript_line_comment_at_first_column = false
|
|
410
|
-
ij_javascript_method_brace_style = next_line
|
|
411
|
-
ij_javascript_method_call_chain_wrap = off
|
|
412
|
-
ij_javascript_method_parameters_new_line_after_left_paren = false
|
|
413
|
-
ij_javascript_method_parameters_right_paren_on_new_line = false
|
|
414
|
-
ij_javascript_method_parameters_wrap = off
|
|
415
|
-
ij_javascript_object_literal_wrap = on_every_item
|
|
416
|
-
ij_javascript_object_types_wrap = on_every_item
|
|
417
|
-
ij_javascript_parentheses_expression_new_line_after_left_paren = false
|
|
418
|
-
ij_javascript_parentheses_expression_right_paren_on_new_line = false
|
|
419
|
-
ij_javascript_place_assignment_sign_on_next_line = false
|
|
420
|
-
ij_javascript_prefer_as_type_cast = false
|
|
421
|
-
ij_javascript_prefer_explicit_types_function_expression_returns = false
|
|
422
|
-
ij_javascript_prefer_explicit_types_function_returns = false
|
|
423
|
-
ij_javascript_prefer_explicit_types_vars_fields = false
|
|
424
|
-
ij_javascript_prefer_parameters_wrap = false
|
|
425
|
-
ij_javascript_property_prefix =
|
|
426
|
-
ij_javascript_reformat_c_style_comments = false
|
|
427
|
-
ij_javascript_space_after_colon = true
|
|
428
|
-
ij_javascript_space_after_comma = true
|
|
429
|
-
ij_javascript_space_after_dots_in_rest_parameter = false
|
|
430
|
-
ij_javascript_space_after_generator_mult = true
|
|
431
|
-
ij_javascript_space_after_property_colon = true
|
|
432
|
-
ij_javascript_space_after_quest = true
|
|
433
|
-
ij_javascript_space_after_type_colon = true
|
|
434
|
-
ij_javascript_space_after_unary_not = false
|
|
435
|
-
ij_javascript_space_before_async_arrow_lparen = true
|
|
436
|
-
ij_javascript_space_before_catch_keyword = true
|
|
437
|
-
ij_javascript_space_before_catch_left_brace = true
|
|
438
|
-
ij_javascript_space_before_catch_parentheses = true
|
|
439
|
-
ij_javascript_space_before_class_lbrace = true
|
|
440
|
-
ij_javascript_space_before_class_left_brace = true
|
|
441
|
-
ij_javascript_space_before_colon = true
|
|
442
|
-
ij_javascript_space_before_comma = false
|
|
443
|
-
ij_javascript_space_before_do_left_brace = true
|
|
444
|
-
ij_javascript_space_before_else_keyword = true
|
|
445
|
-
ij_javascript_space_before_else_left_brace = true
|
|
446
|
-
ij_javascript_space_before_finally_keyword = true
|
|
447
|
-
ij_javascript_space_before_finally_left_brace = true
|
|
448
|
-
ij_javascript_space_before_for_left_brace = true
|
|
449
|
-
ij_javascript_space_before_for_parentheses = true
|
|
450
|
-
ij_javascript_space_before_for_semicolon = false
|
|
451
|
-
ij_javascript_space_before_function_left_parenth = true
|
|
452
|
-
ij_javascript_space_before_generator_mult = false
|
|
453
|
-
ij_javascript_space_before_if_left_brace = true
|
|
454
|
-
ij_javascript_space_before_if_parentheses = true
|
|
455
|
-
ij_javascript_space_before_method_call_parentheses = false
|
|
456
|
-
ij_javascript_space_before_method_left_brace = true
|
|
457
|
-
ij_javascript_space_before_method_parentheses = false
|
|
458
|
-
ij_javascript_space_before_property_colon = false
|
|
459
|
-
ij_javascript_space_before_quest = true
|
|
460
|
-
ij_javascript_space_before_switch_left_brace = true
|
|
461
|
-
ij_javascript_space_before_switch_parentheses = true
|
|
462
|
-
ij_javascript_space_before_try_left_brace = true
|
|
463
|
-
ij_javascript_space_before_type_colon = false
|
|
464
|
-
ij_javascript_space_before_unary_not = false
|
|
465
|
-
ij_javascript_space_before_while_keyword = true
|
|
466
|
-
ij_javascript_space_before_while_left_brace = true
|
|
467
|
-
ij_javascript_space_before_while_parentheses = true
|
|
468
|
-
ij_javascript_spaces_around_additive_operators = true
|
|
469
|
-
ij_javascript_spaces_around_arrow_function_operator = true
|
|
470
|
-
ij_javascript_spaces_around_assignment_operators = true
|
|
471
|
-
ij_javascript_spaces_around_bitwise_operators = true
|
|
472
|
-
ij_javascript_spaces_around_equality_operators = true
|
|
473
|
-
ij_javascript_spaces_around_logical_operators = true
|
|
474
|
-
ij_javascript_spaces_around_multiplicative_operators = true
|
|
475
|
-
ij_javascript_spaces_around_relational_operators = true
|
|
476
|
-
ij_javascript_spaces_around_shift_operators = true
|
|
477
|
-
ij_javascript_spaces_around_unary_operator = false
|
|
478
|
-
ij_javascript_spaces_within_array_initializer_brackets = false
|
|
479
|
-
ij_javascript_spaces_within_brackets = false
|
|
480
|
-
ij_javascript_spaces_within_catch_parentheses = false
|
|
481
|
-
ij_javascript_spaces_within_for_parentheses = false
|
|
482
|
-
ij_javascript_spaces_within_if_parentheses = false
|
|
483
|
-
ij_javascript_spaces_within_imports = false
|
|
484
|
-
ij_javascript_spaces_within_interpolation_expressions = false
|
|
485
|
-
ij_javascript_spaces_within_method_call_parentheses = false
|
|
486
|
-
ij_javascript_spaces_within_method_parentheses = false
|
|
487
|
-
ij_javascript_spaces_within_object_literal_braces = false
|
|
488
|
-
ij_javascript_spaces_within_object_type_braces = true
|
|
489
|
-
ij_javascript_spaces_within_parentheses = false
|
|
490
|
-
ij_javascript_spaces_within_switch_parentheses = false
|
|
491
|
-
ij_javascript_spaces_within_type_assertion = false
|
|
492
|
-
ij_javascript_spaces_within_union_types = true
|
|
493
|
-
ij_javascript_spaces_within_while_parentheses = false
|
|
494
|
-
ij_javascript_special_else_if_treatment = true
|
|
495
|
-
ij_javascript_ternary_operation_signs_on_next_line = false
|
|
496
|
-
ij_javascript_ternary_operation_wrap = off
|
|
497
|
-
ij_javascript_union_types_wrap = on_every_item
|
|
498
|
-
ij_javascript_use_chained_calls_group_indents = false
|
|
499
|
-
ij_javascript_use_double_quotes = true
|
|
500
|
-
ij_javascript_use_explicit_js_extension = auto
|
|
501
|
-
ij_javascript_use_path_mapping = always
|
|
502
|
-
ij_javascript_use_public_modifier = false
|
|
503
|
-
ij_javascript_use_semicolon_after_statement = true
|
|
504
|
-
ij_javascript_var_declaration_wrap = normal
|
|
505
|
-
ij_javascript_while_brace_force = if_multiline
|
|
506
|
-
ij_javascript_while_on_new_line = true
|
|
507
|
-
ij_javascript_wrap_comments = false
|
|
508
|
-
|
|
509
|
-
[{*.ctp,*.hphp,*.inc,*.module,*.php,*.php4,*.php5,*.phtml}]
|
|
510
|
-
ij_continuation_indent_size = 4
|
|
511
|
-
ij_php_align_assignments = false
|
|
512
|
-
ij_php_align_class_constants = true
|
|
513
|
-
ij_php_align_enum_cases = false
|
|
514
|
-
ij_php_align_group_field_declarations = true
|
|
515
|
-
ij_php_align_inline_comments = false
|
|
516
|
-
ij_php_align_key_value_pairs = true
|
|
517
|
-
ij_php_align_match_arm_bodies = false
|
|
518
|
-
ij_php_align_multiline_array_initializer_expression = true
|
|
519
|
-
ij_php_align_multiline_binary_operation = false
|
|
520
|
-
ij_php_align_multiline_chained_methods = false
|
|
521
|
-
ij_php_align_multiline_extends_list = false
|
|
522
|
-
ij_php_align_multiline_for = true
|
|
523
|
-
ij_php_align_multiline_parameters = true
|
|
524
|
-
ij_php_align_multiline_parameters_in_calls = false
|
|
525
|
-
ij_php_align_multiline_ternary_operation = false
|
|
526
|
-
ij_php_align_named_arguments = false
|
|
527
|
-
ij_php_align_phpdoc_comments = false
|
|
528
|
-
ij_php_align_phpdoc_param_names = false
|
|
529
|
-
ij_php_anonymous_brace_style = end_of_line
|
|
530
|
-
ij_php_api_weight = 28
|
|
531
|
-
ij_php_array_initializer_new_line_after_left_brace = true
|
|
532
|
-
ij_php_array_initializer_right_brace_on_new_line = true
|
|
533
|
-
ij_php_array_initializer_wrap = off
|
|
534
|
-
ij_php_assignment_wrap = off
|
|
535
|
-
ij_php_attributes_wrap = off
|
|
536
|
-
ij_php_author_weight = 28
|
|
537
|
-
ij_php_binary_operation_sign_on_next_line = false
|
|
538
|
-
ij_php_binary_operation_wrap = off
|
|
539
|
-
ij_php_blank_lines_after_class_header = 0
|
|
540
|
-
ij_php_blank_lines_after_function = 1
|
|
541
|
-
ij_php_blank_lines_after_imports = 1
|
|
542
|
-
ij_php_blank_lines_after_opening_tag = 0
|
|
543
|
-
ij_php_blank_lines_after_package = 0
|
|
544
|
-
ij_php_blank_lines_around_class = 1
|
|
545
|
-
ij_php_blank_lines_around_constants = 0
|
|
546
|
-
ij_php_blank_lines_around_enum_cases = 0
|
|
547
|
-
ij_php_blank_lines_around_field = 0
|
|
548
|
-
ij_php_blank_lines_around_method = 1
|
|
549
|
-
ij_php_blank_lines_before_class_end = 0
|
|
550
|
-
ij_php_blank_lines_before_imports = 1
|
|
551
|
-
ij_php_blank_lines_before_method_body = 0
|
|
552
|
-
ij_php_blank_lines_before_package = 1
|
|
553
|
-
ij_php_blank_lines_before_return_statement = 0
|
|
554
|
-
ij_php_blank_lines_between_imports = 0
|
|
555
|
-
ij_php_block_brace_style = next_line
|
|
556
|
-
ij_php_call_parameters_new_line_after_left_paren = false
|
|
557
|
-
ij_php_call_parameters_right_paren_on_new_line = false
|
|
558
|
-
ij_php_call_parameters_wrap = off
|
|
559
|
-
ij_php_catch_on_new_line = true
|
|
560
|
-
ij_php_category_weight = 28
|
|
561
|
-
ij_php_class_brace_style = next_line
|
|
562
|
-
ij_php_comma_after_last_argument = false
|
|
563
|
-
ij_php_comma_after_last_array_element = false
|
|
564
|
-
ij_php_comma_after_last_closure_use_var = false
|
|
565
|
-
ij_php_comma_after_last_match_arm = false
|
|
566
|
-
ij_php_comma_after_last_parameter = false
|
|
567
|
-
ij_php_concat_spaces = true
|
|
568
|
-
ij_php_copyright_weight = 28
|
|
569
|
-
ij_php_deprecated_weight = 28
|
|
570
|
-
ij_php_do_while_brace_force = never
|
|
571
|
-
ij_php_else_if_style = as_is
|
|
572
|
-
ij_php_else_on_new_line = true
|
|
573
|
-
ij_php_example_weight = 28
|
|
574
|
-
ij_php_extends_keyword_wrap = off
|
|
575
|
-
ij_php_extends_list_wrap = off
|
|
576
|
-
ij_php_fields_default_visibility = private
|
|
577
|
-
ij_php_filesource_weight = 28
|
|
578
|
-
ij_php_finally_on_new_line = true
|
|
579
|
-
ij_php_for_brace_force = never
|
|
580
|
-
ij_php_for_statement_new_line_after_left_paren = false
|
|
581
|
-
ij_php_for_statement_right_paren_on_new_line = false
|
|
582
|
-
ij_php_for_statement_wrap = off
|
|
583
|
-
ij_php_force_empty_methods_in_one_line = false
|
|
584
|
-
ij_php_force_short_declaration_array_style = false
|
|
585
|
-
ij_php_getters_setters_naming_style = camel_case
|
|
586
|
-
ij_php_getters_setters_order_style = getters_first
|
|
587
|
-
ij_php_global_weight = 28
|
|
588
|
-
ij_php_group_use_wrap = on_every_item
|
|
589
|
-
ij_php_if_brace_force = if_multiline
|
|
590
|
-
ij_php_if_lparen_on_next_line = false
|
|
591
|
-
ij_php_if_rparen_on_next_line = false
|
|
592
|
-
ij_php_ignore_weight = 28
|
|
593
|
-
ij_php_import_sorting = alphabetic
|
|
594
|
-
ij_php_indent_break_from_case = true
|
|
595
|
-
ij_php_indent_case_from_switch = true
|
|
596
|
-
ij_php_indent_code_in_php_tags = false
|
|
597
|
-
ij_php_internal_weight = 28
|
|
598
|
-
ij_php_keep_blank_lines_after_lbrace = 2
|
|
599
|
-
ij_php_keep_blank_lines_before_right_brace = 2
|
|
600
|
-
ij_php_keep_blank_lines_in_code = 2
|
|
601
|
-
ij_php_keep_blank_lines_in_declarations = 2
|
|
602
|
-
ij_php_keep_control_statement_in_one_line = true
|
|
603
|
-
ij_php_keep_first_column_comment = true
|
|
604
|
-
ij_php_keep_indents_on_empty_lines = false
|
|
605
|
-
ij_php_keep_line_breaks = true
|
|
606
|
-
ij_php_keep_rparen_and_lbrace_on_one_line = false
|
|
607
|
-
ij_php_keep_simple_classes_in_one_line = false
|
|
608
|
-
ij_php_keep_simple_methods_in_one_line = false
|
|
609
|
-
ij_php_lambda_brace_style = end_of_line
|
|
610
|
-
ij_php_license_weight = 28
|
|
611
|
-
ij_php_line_comment_add_space = false
|
|
612
|
-
ij_php_line_comment_at_first_column = true
|
|
613
|
-
ij_php_link_weight = 28
|
|
614
|
-
ij_php_lower_case_boolean_const = false
|
|
615
|
-
ij_php_lower_case_keywords = true
|
|
616
|
-
ij_php_lower_case_null_const = false
|
|
617
|
-
ij_php_method_brace_style = next_line
|
|
618
|
-
ij_php_method_call_chain_wrap = off
|
|
619
|
-
ij_php_method_parameters_new_line_after_left_paren = false
|
|
620
|
-
ij_php_method_parameters_right_paren_on_new_line = false
|
|
621
|
-
ij_php_method_parameters_wrap = off
|
|
622
|
-
ij_php_method_weight = 28
|
|
623
|
-
ij_php_modifier_list_wrap = false
|
|
624
|
-
ij_php_multiline_chained_calls_semicolon_on_new_line = false
|
|
625
|
-
ij_php_namespace_brace_style = 2
|
|
626
|
-
ij_php_new_line_after_php_opening_tag = false
|
|
627
|
-
ij_php_null_type_position = in_the_end
|
|
628
|
-
ij_php_package_weight = 28
|
|
629
|
-
ij_php_param_weight = 0
|
|
630
|
-
ij_php_parameters_attributes_wrap = off
|
|
631
|
-
ij_php_parentheses_expression_new_line_after_left_paren = false
|
|
632
|
-
ij_php_parentheses_expression_right_paren_on_new_line = false
|
|
633
|
-
ij_php_phpdoc_blank_line_before_tags = false
|
|
634
|
-
ij_php_phpdoc_blank_lines_around_parameters = false
|
|
635
|
-
ij_php_phpdoc_keep_blank_lines = true
|
|
636
|
-
ij_php_phpdoc_param_spaces_between_name_and_description = 1
|
|
637
|
-
ij_php_phpdoc_param_spaces_between_tag_and_type = 1
|
|
638
|
-
ij_php_phpdoc_param_spaces_between_type_and_name = 1
|
|
639
|
-
ij_php_phpdoc_use_fqcn = false
|
|
640
|
-
ij_php_phpdoc_wrap_long_lines = false
|
|
641
|
-
ij_php_place_assignment_sign_on_next_line = false
|
|
642
|
-
ij_php_place_parens_for_constructor = 0
|
|
643
|
-
ij_php_property_read_weight = 28
|
|
644
|
-
ij_php_property_weight = 28
|
|
645
|
-
ij_php_property_write_weight = 28
|
|
646
|
-
ij_php_return_type_on_new_line = false
|
|
647
|
-
ij_php_return_weight = 1
|
|
648
|
-
ij_php_see_weight = 28
|
|
649
|
-
ij_php_since_weight = 28
|
|
650
|
-
ij_php_sort_phpdoc_elements = true
|
|
651
|
-
ij_php_space_after_colon = true
|
|
652
|
-
ij_php_space_after_colon_in_enum_backed_type = true
|
|
653
|
-
ij_php_space_after_colon_in_named_argument = true
|
|
654
|
-
ij_php_space_after_colon_in_return_type = true
|
|
655
|
-
ij_php_space_after_comma = true
|
|
656
|
-
ij_php_space_after_for_semicolon = true
|
|
657
|
-
ij_php_space_after_quest = true
|
|
658
|
-
ij_php_space_after_type_cast = false
|
|
659
|
-
ij_php_space_after_unary_not = false
|
|
660
|
-
ij_php_space_before_array_initializer_left_brace = false
|
|
661
|
-
ij_php_space_before_catch_keyword = true
|
|
662
|
-
ij_php_space_before_catch_left_brace = true
|
|
663
|
-
ij_php_space_before_catch_parentheses = true
|
|
664
|
-
ij_php_space_before_class_left_brace = true
|
|
665
|
-
ij_php_space_before_closure_left_parenthesis = true
|
|
666
|
-
ij_php_space_before_colon = true
|
|
667
|
-
ij_php_space_before_colon_in_enum_backed_type = false
|
|
668
|
-
ij_php_space_before_colon_in_named_argument = false
|
|
669
|
-
ij_php_space_before_colon_in_return_type = false
|
|
670
|
-
ij_php_space_before_comma = false
|
|
671
|
-
ij_php_space_before_do_left_brace = true
|
|
672
|
-
ij_php_space_before_else_keyword = true
|
|
673
|
-
ij_php_space_before_else_left_brace = true
|
|
674
|
-
ij_php_space_before_finally_keyword = true
|
|
675
|
-
ij_php_space_before_finally_left_brace = true
|
|
676
|
-
ij_php_space_before_for_left_brace = true
|
|
677
|
-
ij_php_space_before_for_parentheses = true
|
|
678
|
-
ij_php_space_before_for_semicolon = false
|
|
679
|
-
ij_php_space_before_if_left_brace = true
|
|
680
|
-
ij_php_space_before_if_parentheses = true
|
|
681
|
-
ij_php_space_before_method_call_parentheses = false
|
|
682
|
-
ij_php_space_before_method_left_brace = true
|
|
683
|
-
ij_php_space_before_method_parentheses = false
|
|
684
|
-
ij_php_space_before_quest = true
|
|
685
|
-
ij_php_space_before_short_closure_left_parenthesis = false
|
|
686
|
-
ij_php_space_before_switch_left_brace = true
|
|
687
|
-
ij_php_space_before_switch_parentheses = true
|
|
688
|
-
ij_php_space_before_try_left_brace = true
|
|
689
|
-
ij_php_space_before_unary_not = false
|
|
690
|
-
ij_php_space_before_while_keyword = true
|
|
691
|
-
ij_php_space_before_while_left_brace = true
|
|
692
|
-
ij_php_space_before_while_parentheses = true
|
|
693
|
-
ij_php_space_between_ternary_quest_and_colon = false
|
|
694
|
-
ij_php_spaces_around_additive_operators = true
|
|
695
|
-
ij_php_spaces_around_arrow = false
|
|
696
|
-
ij_php_spaces_around_assignment_in_declare = false
|
|
697
|
-
ij_php_spaces_around_assignment_operators = true
|
|
698
|
-
ij_php_spaces_around_bitwise_operators = true
|
|
699
|
-
ij_php_spaces_around_equality_operators = true
|
|
700
|
-
ij_php_spaces_around_logical_operators = true
|
|
701
|
-
ij_php_spaces_around_multiplicative_operators = true
|
|
702
|
-
ij_php_spaces_around_null_coalesce_operator = true
|
|
703
|
-
ij_php_spaces_around_pipe_in_union_type = false
|
|
704
|
-
ij_php_spaces_around_relational_operators = true
|
|
705
|
-
ij_php_spaces_around_shift_operators = true
|
|
706
|
-
ij_php_spaces_around_unary_operator = false
|
|
707
|
-
ij_php_spaces_around_var_within_brackets = false
|
|
708
|
-
ij_php_spaces_within_array_initializer_braces = false
|
|
709
|
-
ij_php_spaces_within_brackets = false
|
|
710
|
-
ij_php_spaces_within_catch_parentheses = false
|
|
711
|
-
ij_php_spaces_within_for_parentheses = false
|
|
712
|
-
ij_php_spaces_within_if_parentheses = false
|
|
713
|
-
ij_php_spaces_within_method_call_parentheses = false
|
|
714
|
-
ij_php_spaces_within_method_parentheses = false
|
|
715
|
-
ij_php_spaces_within_parentheses = false
|
|
716
|
-
ij_php_spaces_within_short_echo_tags = true
|
|
717
|
-
ij_php_spaces_within_switch_parentheses = false
|
|
718
|
-
ij_php_spaces_within_while_parentheses = false
|
|
719
|
-
ij_php_special_else_if_treatment = false
|
|
720
|
-
ij_php_subpackage_weight = 28
|
|
721
|
-
ij_php_ternary_operation_signs_on_next_line = false
|
|
722
|
-
ij_php_ternary_operation_wrap = off
|
|
723
|
-
ij_php_throws_weight = 2
|
|
724
|
-
ij_php_todo_weight = 28
|
|
725
|
-
ij_php_treat_multiline_arrays_and_lambdas_multiline = false
|
|
726
|
-
ij_php_unknown_tag_weight = 28
|
|
727
|
-
ij_php_upper_case_boolean_const = true
|
|
728
|
-
ij_php_upper_case_null_const = true
|
|
729
|
-
ij_php_uses_weight = 28
|
|
730
|
-
ij_php_var_weight = 28
|
|
731
|
-
ij_php_variable_naming_style = mixed
|
|
732
|
-
ij_php_version_weight = 28
|
|
733
|
-
ij_php_while_brace_force = if_multiline
|
|
734
|
-
ij_php_while_on_new_line = true
|
|
735
|
-
|
|
736
|
-
[{*.har,*.jsb2,*.jsb3,*.json,.babelrc,.eslintrc,.prettierrc,.stylelintrc,bowerrc,composer.lock,jest.config}]
|
|
737
|
-
ij_json_array_wrapping = split_into_lines
|
|
738
|
-
ij_json_keep_blank_lines_in_code = 0
|
|
739
|
-
ij_json_keep_indents_on_empty_lines = false
|
|
740
|
-
ij_json_keep_line_breaks = true
|
|
741
|
-
ij_json_keep_trailing_comma = false
|
|
742
|
-
ij_json_object_wrapping = split_into_lines
|
|
743
|
-
ij_json_property_alignment = do_not_align
|
|
744
|
-
ij_json_space_after_colon = true
|
|
745
|
-
ij_json_space_after_comma = true
|
|
746
|
-
ij_json_space_before_colon = false
|
|
747
|
-
ij_json_space_before_comma = false
|
|
748
|
-
ij_json_spaces_within_braces = false
|
|
749
|
-
ij_json_spaces_within_brackets = false
|
|
750
|
-
ij_json_wrap_long_lines = false
|
|
751
|
-
|
|
752
|
-
[{*.htm,*.html,*.ng,*.sht,*.shtm,*.shtml}]
|
|
753
|
-
ij_html_add_new_line_before_tags = body,div,p,form,h1,h2,h3
|
|
754
|
-
ij_html_align_attributes = true
|
|
755
|
-
ij_html_align_text = false
|
|
756
|
-
ij_html_attribute_wrap = normal
|
|
757
|
-
ij_html_block_comment_add_space = false
|
|
758
|
-
ij_html_block_comment_at_first_column = true
|
|
759
|
-
ij_html_do_not_align_children_of_min_lines = 0
|
|
760
|
-
ij_html_do_not_break_if_inline_tags = title,h1,h2,h3,h4,h5,h6,p
|
|
761
|
-
ij_html_do_not_indent_children_of_tags = html,body,thead,tbody,tfoot
|
|
762
|
-
ij_html_enforce_quotes = false
|
|
763
|
-
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
|
|
764
|
-
ij_html_keep_blank_lines = 2
|
|
765
|
-
ij_html_keep_indents_on_empty_lines = false
|
|
766
|
-
ij_html_keep_line_breaks = true
|
|
767
|
-
ij_html_keep_line_breaks_in_text = true
|
|
768
|
-
ij_html_keep_whitespaces = false
|
|
769
|
-
ij_html_keep_whitespaces_inside = span,pre,textarea
|
|
770
|
-
ij_html_line_comment_at_first_column = true
|
|
771
|
-
ij_html_new_line_after_last_attribute = never
|
|
772
|
-
ij_html_new_line_before_first_attribute = never
|
|
773
|
-
ij_html_quote_style = double
|
|
774
|
-
ij_html_remove_new_line_before_tags = br
|
|
775
|
-
ij_html_space_after_tag_name = false
|
|
776
|
-
ij_html_space_around_equality_in_attribute = false
|
|
777
|
-
ij_html_space_inside_empty_tag = false
|
|
778
|
-
ij_html_text_wrap = normal
|
|
779
|
-
|
|
780
|
-
[{*.http,*.rest}]
|
|
781
|
-
indent_size = 0
|
|
782
|
-
ij_continuation_indent_size = 4
|
|
783
|
-
ij_http-request_call_parameters_wrap = normal
|
|
784
|
-
ij_http-request_method_parameters_wrap = split_into_lines
|
|
785
|
-
ij_http-request_space_before_comma = true
|
|
786
|
-
ij_http-request_spaces_around_assignment_operators = true
|
|
787
|
-
|
|
788
|
-
[{*.markdown,*.md}]
|
|
789
|
-
ij_markdown_force_one_space_after_blockquote_symbol = true
|
|
790
|
-
ij_markdown_force_one_space_after_header_symbol = true
|
|
791
|
-
ij_markdown_force_one_space_after_list_bullet = true
|
|
792
|
-
ij_markdown_force_one_space_between_words = true
|
|
793
|
-
ij_markdown_format_tables = true
|
|
794
|
-
ij_markdown_insert_quote_arrows_on_wrap = true
|
|
795
|
-
ij_markdown_keep_indents_on_empty_lines = false
|
|
796
|
-
ij_markdown_keep_line_breaks_inside_text_blocks = true
|
|
797
|
-
ij_markdown_max_lines_around_block_elements = 1
|
|
798
|
-
ij_markdown_max_lines_around_header = 1
|
|
799
|
-
ij_markdown_max_lines_between_paragraphs = 1
|
|
800
|
-
ij_markdown_min_lines_around_block_elements = 1
|
|
801
|
-
ij_markdown_min_lines_around_header = 1
|
|
802
|
-
ij_markdown_min_lines_between_paragraphs = 1
|
|
803
|
-
ij_markdown_wrap_text_if_long = true
|
|
804
|
-
ij_markdown_wrap_text_inside_blockquotes = true
|
|
805
|
-
|
|
806
|
-
[{*.yaml,*.yml}]
|
|
807
|
-
indent_size = 2
|
|
808
|
-
ij_yaml_align_values_properties = do_not_align
|
|
809
|
-
ij_yaml_autoinsert_sequence_marker = true
|
|
810
|
-
ij_yaml_block_mapping_on_new_line = false
|
|
811
|
-
ij_yaml_indent_sequence_value = true
|
|
812
|
-
ij_yaml_keep_indents_on_empty_lines = false
|
|
813
|
-
ij_yaml_keep_line_breaks = true
|
|
814
|
-
ij_yaml_sequence_on_new_line = false
|
|
815
|
-
ij_yaml_space_before_colon = false
|
|
816
|
-
ij_yaml_spaces_within_braces = true
|
|
817
|
-
ij_yaml_spaces_within_brackets = true
|
|
1
|
+
[*]
|
|
2
|
+
charset = utf-8
|
|
3
|
+
end_of_line = lf
|
|
4
|
+
indent_size = 4
|
|
5
|
+
indent_style = space
|
|
6
|
+
insert_final_newline = true
|
|
7
|
+
max_line_length = 120
|
|
8
|
+
tab_width = 4
|
|
9
|
+
trim_trailing_whitespace = true
|
|
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
|
+
[*.blade.php]
|
|
19
|
+
ij_blade_keep_indents_on_empty_lines = false
|
|
20
|
+
|
|
21
|
+
[*.css]
|
|
22
|
+
ij_css_align_closing_brace_with_properties = false
|
|
23
|
+
ij_css_blank_lines_around_nested_selector = 1
|
|
24
|
+
ij_css_blank_lines_between_blocks = 1
|
|
25
|
+
ij_css_block_comment_add_space = false
|
|
26
|
+
ij_css_brace_placement = end_of_line
|
|
27
|
+
ij_css_enforce_quotes_on_format = false
|
|
28
|
+
ij_css_hex_color_long_format = false
|
|
29
|
+
ij_css_hex_color_lower_case = false
|
|
30
|
+
ij_css_hex_color_short_format = false
|
|
31
|
+
ij_css_hex_color_upper_case = false
|
|
32
|
+
ij_css_keep_blank_lines_in_code = 2
|
|
33
|
+
ij_css_keep_indents_on_empty_lines = false
|
|
34
|
+
ij_css_keep_single_line_blocks = false
|
|
35
|
+
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
|
|
36
|
+
ij_css_space_after_colon = true
|
|
37
|
+
ij_css_space_before_opening_brace = true
|
|
38
|
+
ij_css_use_double_quotes = true
|
|
39
|
+
ij_css_value_alignment = do_not_align
|
|
40
|
+
|
|
41
|
+
[*.feature]
|
|
42
|
+
indent_size = 2
|
|
43
|
+
ij_gherkin_keep_indents_on_empty_lines = false
|
|
44
|
+
|
|
45
|
+
[*.less]
|
|
46
|
+
indent_size = 2
|
|
47
|
+
ij_less_align_closing_brace_with_properties = false
|
|
48
|
+
ij_less_blank_lines_around_nested_selector = 1
|
|
49
|
+
ij_less_blank_lines_between_blocks = 1
|
|
50
|
+
ij_less_block_comment_add_space = false
|
|
51
|
+
ij_less_brace_placement = 0
|
|
52
|
+
ij_less_enforce_quotes_on_format = false
|
|
53
|
+
ij_less_hex_color_long_format = false
|
|
54
|
+
ij_less_hex_color_lower_case = false
|
|
55
|
+
ij_less_hex_color_short_format = false
|
|
56
|
+
ij_less_hex_color_upper_case = false
|
|
57
|
+
ij_less_keep_blank_lines_in_code = 2
|
|
58
|
+
ij_less_keep_indents_on_empty_lines = false
|
|
59
|
+
ij_less_keep_single_line_blocks = false
|
|
60
|
+
ij_less_line_comment_add_space = false
|
|
61
|
+
ij_less_line_comment_at_first_column = false
|
|
62
|
+
ij_less_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
|
|
63
|
+
ij_less_space_after_colon = true
|
|
64
|
+
ij_less_space_before_opening_brace = true
|
|
65
|
+
ij_less_use_double_quotes = true
|
|
66
|
+
ij_less_value_alignment = 0
|
|
67
|
+
|
|
68
|
+
[*.sass]
|
|
69
|
+
indent_size = 2
|
|
70
|
+
ij_sass_align_closing_brace_with_properties = false
|
|
71
|
+
ij_sass_blank_lines_around_nested_selector = 1
|
|
72
|
+
ij_sass_blank_lines_between_blocks = 1
|
|
73
|
+
ij_sass_brace_placement = 0
|
|
74
|
+
ij_sass_enforce_quotes_on_format = false
|
|
75
|
+
ij_sass_hex_color_long_format = false
|
|
76
|
+
ij_sass_hex_color_lower_case = false
|
|
77
|
+
ij_sass_hex_color_short_format = false
|
|
78
|
+
ij_sass_hex_color_upper_case = false
|
|
79
|
+
ij_sass_keep_blank_lines_in_code = 2
|
|
80
|
+
ij_sass_keep_indents_on_empty_lines = false
|
|
81
|
+
ij_sass_keep_single_line_blocks = false
|
|
82
|
+
ij_sass_line_comment_add_space = false
|
|
83
|
+
ij_sass_line_comment_at_first_column = false
|
|
84
|
+
ij_sass_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
|
|
85
|
+
ij_sass_space_after_colon = true
|
|
86
|
+
ij_sass_space_before_opening_brace = true
|
|
87
|
+
ij_sass_use_double_quotes = true
|
|
88
|
+
ij_sass_value_alignment = 0
|
|
89
|
+
|
|
90
|
+
[*.scss]
|
|
91
|
+
indent_size = 2
|
|
92
|
+
ij_scss_align_closing_brace_with_properties = false
|
|
93
|
+
ij_scss_blank_lines_around_nested_selector = 1
|
|
94
|
+
ij_scss_blank_lines_between_blocks = 1
|
|
95
|
+
ij_scss_block_comment_add_space = false
|
|
96
|
+
ij_scss_brace_placement = 0
|
|
97
|
+
ij_scss_enforce_quotes_on_format = false
|
|
98
|
+
ij_scss_hex_color_long_format = false
|
|
99
|
+
ij_scss_hex_color_lower_case = false
|
|
100
|
+
ij_scss_hex_color_short_format = false
|
|
101
|
+
ij_scss_hex_color_upper_case = false
|
|
102
|
+
ij_scss_keep_blank_lines_in_code = 2
|
|
103
|
+
ij_scss_keep_indents_on_empty_lines = false
|
|
104
|
+
ij_scss_keep_single_line_blocks = false
|
|
105
|
+
ij_scss_line_comment_add_space = false
|
|
106
|
+
ij_scss_line_comment_at_first_column = false
|
|
107
|
+
ij_scss_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
|
|
108
|
+
ij_scss_space_after_colon = true
|
|
109
|
+
ij_scss_space_before_opening_brace = true
|
|
110
|
+
ij_scss_use_double_quotes = true
|
|
111
|
+
ij_scss_value_alignment = 0
|
|
112
|
+
|
|
113
|
+
[*.twig]
|
|
114
|
+
ij_twig_keep_indents_on_empty_lines = false
|
|
115
|
+
ij_twig_spaces_inside_comments_delimiters = true
|
|
116
|
+
ij_twig_spaces_inside_delimiters = true
|
|
117
|
+
ij_twig_spaces_inside_variable_delimiters = true
|
|
118
|
+
|
|
119
|
+
[*.vue]
|
|
120
|
+
indent_size = 2
|
|
121
|
+
tab_width = 2
|
|
122
|
+
ij_continuation_indent_size = 4
|
|
123
|
+
ij_vue_indent_children_of_top_level = template
|
|
124
|
+
ij_vue_interpolation_new_line_after_start_delimiter = true
|
|
125
|
+
ij_vue_interpolation_new_line_before_end_delimiter = true
|
|
126
|
+
ij_vue_interpolation_wrap = off
|
|
127
|
+
ij_vue_keep_indents_on_empty_lines = false
|
|
128
|
+
ij_vue_spaces_within_interpolation_expressions = true
|
|
129
|
+
|
|
130
|
+
[.editorconfig]
|
|
131
|
+
ij_editorconfig_align_group_field_declarations = false
|
|
132
|
+
ij_editorconfig_space_after_colon = false
|
|
133
|
+
ij_editorconfig_space_after_comma = true
|
|
134
|
+
ij_editorconfig_space_before_colon = false
|
|
135
|
+
ij_editorconfig_space_before_comma = false
|
|
136
|
+
ij_editorconfig_spaces_around_assignment_operators = true
|
|
137
|
+
|
|
138
|
+
[{*.ant,*.fxml,*.jhm,*.jnlp,*.jrxml,*.rng,*.tld,*.wsdl,*.xml,*.xsd,*.xsl,*.xslt,*.xul,phpunit.xml.dist}]
|
|
139
|
+
ij_xml_align_attributes = true
|
|
140
|
+
ij_xml_align_text = false
|
|
141
|
+
ij_xml_attribute_wrap = normal
|
|
142
|
+
ij_xml_block_comment_add_space = false
|
|
143
|
+
ij_xml_block_comment_at_first_column = true
|
|
144
|
+
ij_xml_keep_blank_lines = 2
|
|
145
|
+
ij_xml_keep_indents_on_empty_lines = false
|
|
146
|
+
ij_xml_keep_line_breaks = true
|
|
147
|
+
ij_xml_keep_line_breaks_in_text = true
|
|
148
|
+
ij_xml_keep_whitespaces = false
|
|
149
|
+
ij_xml_keep_whitespaces_around_cdata = preserve
|
|
150
|
+
ij_xml_keep_whitespaces_inside_cdata = false
|
|
151
|
+
ij_xml_line_comment_at_first_column = true
|
|
152
|
+
ij_xml_space_after_tag_name = false
|
|
153
|
+
ij_xml_space_around_equals_in_attribute = false
|
|
154
|
+
ij_xml_space_inside_empty_tag = false
|
|
155
|
+
ij_xml_text_wrap = normal
|
|
156
|
+
|
|
157
|
+
[{*.ats,*.cts,*.mts,*.ts}]
|
|
158
|
+
ij_continuation_indent_size = 4
|
|
159
|
+
ij_typescript_align_imports = false
|
|
160
|
+
ij_typescript_align_multiline_array_initializer_expression = false
|
|
161
|
+
ij_typescript_align_multiline_binary_operation = false
|
|
162
|
+
ij_typescript_align_multiline_chained_methods = false
|
|
163
|
+
ij_typescript_align_multiline_extends_list = false
|
|
164
|
+
ij_typescript_align_multiline_for = true
|
|
165
|
+
ij_typescript_align_multiline_parameters = true
|
|
166
|
+
ij_typescript_align_multiline_parameters_in_calls = false
|
|
167
|
+
ij_typescript_align_multiline_ternary_operation = false
|
|
168
|
+
ij_typescript_align_object_properties = 0
|
|
169
|
+
ij_typescript_align_union_types = false
|
|
170
|
+
ij_typescript_align_var_statements = 0
|
|
171
|
+
ij_typescript_array_initializer_new_line_after_left_brace = false
|
|
172
|
+
ij_typescript_array_initializer_right_brace_on_new_line = false
|
|
173
|
+
ij_typescript_array_initializer_wrap = off
|
|
174
|
+
ij_typescript_assignment_wrap = off
|
|
175
|
+
ij_typescript_binary_operation_sign_on_next_line = false
|
|
176
|
+
ij_typescript_binary_operation_wrap = off
|
|
177
|
+
ij_typescript_blacklist_imports = rxjs/Rx,node_modules/**,**/node_modules/**,@angular/material,@angular/material/typings/**
|
|
178
|
+
ij_typescript_blank_lines_after_imports = 1
|
|
179
|
+
ij_typescript_blank_lines_around_class = 1
|
|
180
|
+
ij_typescript_blank_lines_around_field = 0
|
|
181
|
+
ij_typescript_blank_lines_around_field_in_interface = 0
|
|
182
|
+
ij_typescript_blank_lines_around_function = 1
|
|
183
|
+
ij_typescript_blank_lines_around_method = 1
|
|
184
|
+
ij_typescript_blank_lines_around_method_in_interface = 1
|
|
185
|
+
ij_typescript_block_brace_style = next_line
|
|
186
|
+
ij_typescript_block_comment_add_space = false
|
|
187
|
+
ij_typescript_block_comment_at_first_column = true
|
|
188
|
+
ij_typescript_call_parameters_new_line_after_left_paren = false
|
|
189
|
+
ij_typescript_call_parameters_right_paren_on_new_line = false
|
|
190
|
+
ij_typescript_call_parameters_wrap = off
|
|
191
|
+
ij_typescript_catch_on_new_line = true
|
|
192
|
+
ij_typescript_chained_call_dot_on_new_line = true
|
|
193
|
+
ij_typescript_class_brace_style = next_line
|
|
194
|
+
ij_typescript_comma_on_new_line = false
|
|
195
|
+
ij_typescript_do_while_brace_force = always
|
|
196
|
+
ij_typescript_else_on_new_line = true
|
|
197
|
+
ij_typescript_enforce_trailing_comma = whenmultiline
|
|
198
|
+
ij_typescript_enum_constants_wrap = on_every_item
|
|
199
|
+
ij_typescript_extends_keyword_wrap = off
|
|
200
|
+
ij_typescript_extends_list_wrap = off
|
|
201
|
+
ij_typescript_field_prefix = _
|
|
202
|
+
ij_typescript_file_name_style = relaxed
|
|
203
|
+
ij_typescript_finally_on_new_line = true
|
|
204
|
+
ij_typescript_for_brace_force = always
|
|
205
|
+
ij_typescript_for_statement_new_line_after_left_paren = false
|
|
206
|
+
ij_typescript_for_statement_right_paren_on_new_line = false
|
|
207
|
+
ij_typescript_for_statement_wrap = off
|
|
208
|
+
ij_typescript_force_quote_style = true
|
|
209
|
+
ij_typescript_force_semicolon_style = false
|
|
210
|
+
ij_typescript_function_expression_brace_style = next_line
|
|
211
|
+
ij_typescript_if_brace_force = never
|
|
212
|
+
ij_typescript_import_merge_members = global
|
|
213
|
+
ij_typescript_import_prefer_absolute_path = global
|
|
214
|
+
ij_typescript_import_sort_members = true
|
|
215
|
+
ij_typescript_import_sort_module_name = false
|
|
216
|
+
ij_typescript_import_use_node_resolution = true
|
|
217
|
+
ij_typescript_imports_wrap = on_every_item
|
|
218
|
+
ij_typescript_indent_case_from_switch = true
|
|
219
|
+
ij_typescript_indent_chained_calls = true
|
|
220
|
+
ij_typescript_indent_package_children = 0
|
|
221
|
+
ij_typescript_jsdoc_include_types = false
|
|
222
|
+
ij_typescript_jsx_attribute_value = braces
|
|
223
|
+
ij_typescript_keep_blank_lines_in_code = 2
|
|
224
|
+
ij_typescript_keep_first_column_comment = true
|
|
225
|
+
ij_typescript_keep_indents_on_empty_lines = false
|
|
226
|
+
ij_typescript_keep_line_breaks = true
|
|
227
|
+
ij_typescript_keep_simple_blocks_in_one_line = false
|
|
228
|
+
ij_typescript_keep_simple_methods_in_one_line = false
|
|
229
|
+
ij_typescript_line_comment_add_space = true
|
|
230
|
+
ij_typescript_line_comment_at_first_column = false
|
|
231
|
+
ij_typescript_method_brace_style = next_line
|
|
232
|
+
ij_typescript_method_call_chain_wrap = off
|
|
233
|
+
ij_typescript_method_parameters_new_line_after_left_paren = false
|
|
234
|
+
ij_typescript_method_parameters_right_paren_on_new_line = false
|
|
235
|
+
ij_typescript_method_parameters_wrap = off
|
|
236
|
+
ij_typescript_object_literal_wrap = on_every_item
|
|
237
|
+
ij_typescript_object_types_wrap = on_every_item
|
|
238
|
+
ij_typescript_parentheses_expression_new_line_after_left_paren = false
|
|
239
|
+
ij_typescript_parentheses_expression_right_paren_on_new_line = false
|
|
240
|
+
ij_typescript_place_assignment_sign_on_next_line = false
|
|
241
|
+
ij_typescript_prefer_as_type_cast = true
|
|
242
|
+
ij_typescript_prefer_explicit_types_function_expression_returns = false
|
|
243
|
+
ij_typescript_prefer_explicit_types_function_returns = false
|
|
244
|
+
ij_typescript_prefer_explicit_types_vars_fields = false
|
|
245
|
+
ij_typescript_prefer_parameters_wrap = false
|
|
246
|
+
ij_typescript_property_prefix =
|
|
247
|
+
ij_typescript_reformat_c_style_comments = false
|
|
248
|
+
ij_typescript_space_after_colon = true
|
|
249
|
+
ij_typescript_space_after_comma = true
|
|
250
|
+
ij_typescript_space_after_dots_in_rest_parameter = false
|
|
251
|
+
ij_typescript_space_after_generator_mult = true
|
|
252
|
+
ij_typescript_space_after_property_colon = true
|
|
253
|
+
ij_typescript_space_after_quest = true
|
|
254
|
+
ij_typescript_space_after_type_colon = true
|
|
255
|
+
ij_typescript_space_after_unary_not = false
|
|
256
|
+
ij_typescript_space_before_async_arrow_lparen = false
|
|
257
|
+
ij_typescript_space_before_catch_keyword = true
|
|
258
|
+
ij_typescript_space_before_catch_left_brace = true
|
|
259
|
+
ij_typescript_space_before_catch_parentheses = true
|
|
260
|
+
ij_typescript_space_before_class_lbrace = true
|
|
261
|
+
ij_typescript_space_before_class_left_brace = true
|
|
262
|
+
ij_typescript_space_before_colon = true
|
|
263
|
+
ij_typescript_space_before_comma = false
|
|
264
|
+
ij_typescript_space_before_do_left_brace = true
|
|
265
|
+
ij_typescript_space_before_else_keyword = true
|
|
266
|
+
ij_typescript_space_before_else_left_brace = true
|
|
267
|
+
ij_typescript_space_before_finally_keyword = true
|
|
268
|
+
ij_typescript_space_before_finally_left_brace = true
|
|
269
|
+
ij_typescript_space_before_for_left_brace = true
|
|
270
|
+
ij_typescript_space_before_for_parentheses = true
|
|
271
|
+
ij_typescript_space_before_for_semicolon = false
|
|
272
|
+
ij_typescript_space_before_function_left_parenth = true
|
|
273
|
+
ij_typescript_space_before_generator_mult = false
|
|
274
|
+
ij_typescript_space_before_if_left_brace = true
|
|
275
|
+
ij_typescript_space_before_if_parentheses = true
|
|
276
|
+
ij_typescript_space_before_method_call_parentheses = false
|
|
277
|
+
ij_typescript_space_before_method_left_brace = true
|
|
278
|
+
ij_typescript_space_before_method_parentheses = false
|
|
279
|
+
ij_typescript_space_before_property_colon = false
|
|
280
|
+
ij_typescript_space_before_quest = true
|
|
281
|
+
ij_typescript_space_before_switch_left_brace = true
|
|
282
|
+
ij_typescript_space_before_switch_parentheses = true
|
|
283
|
+
ij_typescript_space_before_try_left_brace = true
|
|
284
|
+
ij_typescript_space_before_type_colon = false
|
|
285
|
+
ij_typescript_space_before_unary_not = false
|
|
286
|
+
ij_typescript_space_before_while_keyword = true
|
|
287
|
+
ij_typescript_space_before_while_left_brace = true
|
|
288
|
+
ij_typescript_space_before_while_parentheses = true
|
|
289
|
+
ij_typescript_spaces_around_additive_operators = true
|
|
290
|
+
ij_typescript_spaces_around_arrow_function_operator = true
|
|
291
|
+
ij_typescript_spaces_around_assignment_operators = true
|
|
292
|
+
ij_typescript_spaces_around_bitwise_operators = true
|
|
293
|
+
ij_typescript_spaces_around_equality_operators = true
|
|
294
|
+
ij_typescript_spaces_around_logical_operators = true
|
|
295
|
+
ij_typescript_spaces_around_multiplicative_operators = true
|
|
296
|
+
ij_typescript_spaces_around_relational_operators = true
|
|
297
|
+
ij_typescript_spaces_around_shift_operators = true
|
|
298
|
+
ij_typescript_spaces_around_unary_operator = false
|
|
299
|
+
ij_typescript_spaces_within_array_initializer_brackets = false
|
|
300
|
+
ij_typescript_spaces_within_brackets = false
|
|
301
|
+
ij_typescript_spaces_within_catch_parentheses = false
|
|
302
|
+
ij_typescript_spaces_within_for_parentheses = false
|
|
303
|
+
ij_typescript_spaces_within_if_parentheses = false
|
|
304
|
+
ij_typescript_spaces_within_imports = true
|
|
305
|
+
ij_typescript_spaces_within_interpolation_expressions = false
|
|
306
|
+
ij_typescript_spaces_within_method_call_parentheses = false
|
|
307
|
+
ij_typescript_spaces_within_method_parentheses = false
|
|
308
|
+
ij_typescript_spaces_within_object_literal_braces = true
|
|
309
|
+
ij_typescript_spaces_within_object_type_braces = true
|
|
310
|
+
ij_typescript_spaces_within_parentheses = false
|
|
311
|
+
ij_typescript_spaces_within_switch_parentheses = false
|
|
312
|
+
ij_typescript_spaces_within_type_assertion = false
|
|
313
|
+
ij_typescript_spaces_within_union_types = true
|
|
314
|
+
ij_typescript_spaces_within_while_parentheses = false
|
|
315
|
+
ij_typescript_special_else_if_treatment = true
|
|
316
|
+
ij_typescript_ternary_operation_signs_on_next_line = false
|
|
317
|
+
ij_typescript_ternary_operation_wrap = off
|
|
318
|
+
ij_typescript_union_types_wrap = on_every_item
|
|
319
|
+
ij_typescript_use_chained_calls_group_indents = false
|
|
320
|
+
ij_typescript_use_double_quotes = false
|
|
321
|
+
ij_typescript_use_explicit_js_extension = auto
|
|
322
|
+
ij_typescript_use_path_mapping = always
|
|
323
|
+
ij_typescript_use_public_modifier = true
|
|
324
|
+
ij_typescript_use_semicolon_after_statement = true
|
|
325
|
+
ij_typescript_var_declaration_wrap = normal
|
|
326
|
+
ij_typescript_while_brace_force = always
|
|
327
|
+
ij_typescript_while_on_new_line = true
|
|
328
|
+
ij_typescript_wrap_comments = false
|
|
329
|
+
|
|
330
|
+
[{*.bash,*.sh,*.zsh}]
|
|
331
|
+
indent_size = 2
|
|
332
|
+
tab_width = 2
|
|
333
|
+
ij_shell_binary_ops_start_line = false
|
|
334
|
+
ij_shell_keep_column_alignment_padding = false
|
|
335
|
+
ij_shell_minify_program = false
|
|
336
|
+
ij_shell_redirect_followed_by_space = false
|
|
337
|
+
ij_shell_switch_cases_indented = false
|
|
338
|
+
ij_shell_use_unix_line_separator = true
|
|
339
|
+
|
|
340
|
+
[{*.cjs,*.js}]
|
|
341
|
+
ij_continuation_indent_size = 4
|
|
342
|
+
ij_javascript_align_imports = false
|
|
343
|
+
ij_javascript_align_multiline_array_initializer_expression = true
|
|
344
|
+
ij_javascript_align_multiline_binary_operation = false
|
|
345
|
+
ij_javascript_align_multiline_chained_methods = true
|
|
346
|
+
ij_javascript_align_multiline_extends_list = false
|
|
347
|
+
ij_javascript_align_multiline_for = true
|
|
348
|
+
ij_javascript_align_multiline_parameters = true
|
|
349
|
+
ij_javascript_align_multiline_parameters_in_calls = false
|
|
350
|
+
ij_javascript_align_multiline_ternary_operation = true
|
|
351
|
+
ij_javascript_align_object_properties = 1
|
|
352
|
+
ij_javascript_align_union_types = false
|
|
353
|
+
ij_javascript_align_var_statements = 2
|
|
354
|
+
ij_javascript_array_initializer_new_line_after_left_brace = false
|
|
355
|
+
ij_javascript_array_initializer_right_brace_on_new_line = false
|
|
356
|
+
ij_javascript_array_initializer_wrap = on_every_item
|
|
357
|
+
ij_javascript_assignment_wrap = off
|
|
358
|
+
ij_javascript_binary_operation_sign_on_next_line = false
|
|
359
|
+
ij_javascript_binary_operation_wrap = off
|
|
360
|
+
ij_javascript_blacklist_imports = rxjs/Rx,node_modules/**,**/node_modules/**,@angular/material,@angular/material/typings/**
|
|
361
|
+
ij_javascript_blank_lines_after_imports = 1
|
|
362
|
+
ij_javascript_blank_lines_around_class = 1
|
|
363
|
+
ij_javascript_blank_lines_around_field = 0
|
|
364
|
+
ij_javascript_blank_lines_around_function = 1
|
|
365
|
+
ij_javascript_blank_lines_around_method = 1
|
|
366
|
+
ij_javascript_block_brace_style = next_line
|
|
367
|
+
ij_javascript_block_comment_add_space = false
|
|
368
|
+
ij_javascript_block_comment_at_first_column = true
|
|
369
|
+
ij_javascript_call_parameters_new_line_after_left_paren = false
|
|
370
|
+
ij_javascript_call_parameters_right_paren_on_new_line = false
|
|
371
|
+
ij_javascript_call_parameters_wrap = off
|
|
372
|
+
ij_javascript_catch_on_new_line = true
|
|
373
|
+
ij_javascript_chained_call_dot_on_new_line = true
|
|
374
|
+
ij_javascript_class_brace_style = next_line
|
|
375
|
+
ij_javascript_comma_on_new_line = false
|
|
376
|
+
ij_javascript_do_while_brace_force = if_multiline
|
|
377
|
+
ij_javascript_else_on_new_line = true
|
|
378
|
+
ij_javascript_enforce_trailing_comma = keep
|
|
379
|
+
ij_javascript_extends_keyword_wrap = off
|
|
380
|
+
ij_javascript_extends_list_wrap = off
|
|
381
|
+
ij_javascript_field_prefix = _
|
|
382
|
+
ij_javascript_file_name_style = relaxed
|
|
383
|
+
ij_javascript_finally_on_new_line = true
|
|
384
|
+
ij_javascript_for_brace_force = if_multiline
|
|
385
|
+
ij_javascript_for_statement_new_line_after_left_paren = false
|
|
386
|
+
ij_javascript_for_statement_right_paren_on_new_line = false
|
|
387
|
+
ij_javascript_for_statement_wrap = off
|
|
388
|
+
ij_javascript_force_quote_style = false
|
|
389
|
+
ij_javascript_force_semicolon_style = false
|
|
390
|
+
ij_javascript_function_expression_brace_style = next_line
|
|
391
|
+
ij_javascript_if_brace_force = if_multiline
|
|
392
|
+
ij_javascript_import_merge_members = global
|
|
393
|
+
ij_javascript_import_prefer_absolute_path = global
|
|
394
|
+
ij_javascript_import_sort_members = true
|
|
395
|
+
ij_javascript_import_sort_module_name = false
|
|
396
|
+
ij_javascript_import_use_node_resolution = true
|
|
397
|
+
ij_javascript_imports_wrap = on_every_item
|
|
398
|
+
ij_javascript_indent_case_from_switch = true
|
|
399
|
+
ij_javascript_indent_chained_calls = true
|
|
400
|
+
ij_javascript_indent_package_children = 0
|
|
401
|
+
ij_javascript_jsx_attribute_value = braces
|
|
402
|
+
ij_javascript_keep_blank_lines_in_code = 1
|
|
403
|
+
ij_javascript_keep_first_column_comment = true
|
|
404
|
+
ij_javascript_keep_indents_on_empty_lines = false
|
|
405
|
+
ij_javascript_keep_line_breaks = true
|
|
406
|
+
ij_javascript_keep_simple_blocks_in_one_line = false
|
|
407
|
+
ij_javascript_keep_simple_methods_in_one_line = false
|
|
408
|
+
ij_javascript_line_comment_add_space = true
|
|
409
|
+
ij_javascript_line_comment_at_first_column = false
|
|
410
|
+
ij_javascript_method_brace_style = next_line
|
|
411
|
+
ij_javascript_method_call_chain_wrap = off
|
|
412
|
+
ij_javascript_method_parameters_new_line_after_left_paren = false
|
|
413
|
+
ij_javascript_method_parameters_right_paren_on_new_line = false
|
|
414
|
+
ij_javascript_method_parameters_wrap = off
|
|
415
|
+
ij_javascript_object_literal_wrap = on_every_item
|
|
416
|
+
ij_javascript_object_types_wrap = on_every_item
|
|
417
|
+
ij_javascript_parentheses_expression_new_line_after_left_paren = false
|
|
418
|
+
ij_javascript_parentheses_expression_right_paren_on_new_line = false
|
|
419
|
+
ij_javascript_place_assignment_sign_on_next_line = false
|
|
420
|
+
ij_javascript_prefer_as_type_cast = false
|
|
421
|
+
ij_javascript_prefer_explicit_types_function_expression_returns = false
|
|
422
|
+
ij_javascript_prefer_explicit_types_function_returns = false
|
|
423
|
+
ij_javascript_prefer_explicit_types_vars_fields = false
|
|
424
|
+
ij_javascript_prefer_parameters_wrap = false
|
|
425
|
+
ij_javascript_property_prefix =
|
|
426
|
+
ij_javascript_reformat_c_style_comments = false
|
|
427
|
+
ij_javascript_space_after_colon = true
|
|
428
|
+
ij_javascript_space_after_comma = true
|
|
429
|
+
ij_javascript_space_after_dots_in_rest_parameter = false
|
|
430
|
+
ij_javascript_space_after_generator_mult = true
|
|
431
|
+
ij_javascript_space_after_property_colon = true
|
|
432
|
+
ij_javascript_space_after_quest = true
|
|
433
|
+
ij_javascript_space_after_type_colon = true
|
|
434
|
+
ij_javascript_space_after_unary_not = false
|
|
435
|
+
ij_javascript_space_before_async_arrow_lparen = true
|
|
436
|
+
ij_javascript_space_before_catch_keyword = true
|
|
437
|
+
ij_javascript_space_before_catch_left_brace = true
|
|
438
|
+
ij_javascript_space_before_catch_parentheses = true
|
|
439
|
+
ij_javascript_space_before_class_lbrace = true
|
|
440
|
+
ij_javascript_space_before_class_left_brace = true
|
|
441
|
+
ij_javascript_space_before_colon = true
|
|
442
|
+
ij_javascript_space_before_comma = false
|
|
443
|
+
ij_javascript_space_before_do_left_brace = true
|
|
444
|
+
ij_javascript_space_before_else_keyword = true
|
|
445
|
+
ij_javascript_space_before_else_left_brace = true
|
|
446
|
+
ij_javascript_space_before_finally_keyword = true
|
|
447
|
+
ij_javascript_space_before_finally_left_brace = true
|
|
448
|
+
ij_javascript_space_before_for_left_brace = true
|
|
449
|
+
ij_javascript_space_before_for_parentheses = true
|
|
450
|
+
ij_javascript_space_before_for_semicolon = false
|
|
451
|
+
ij_javascript_space_before_function_left_parenth = true
|
|
452
|
+
ij_javascript_space_before_generator_mult = false
|
|
453
|
+
ij_javascript_space_before_if_left_brace = true
|
|
454
|
+
ij_javascript_space_before_if_parentheses = true
|
|
455
|
+
ij_javascript_space_before_method_call_parentheses = false
|
|
456
|
+
ij_javascript_space_before_method_left_brace = true
|
|
457
|
+
ij_javascript_space_before_method_parentheses = false
|
|
458
|
+
ij_javascript_space_before_property_colon = false
|
|
459
|
+
ij_javascript_space_before_quest = true
|
|
460
|
+
ij_javascript_space_before_switch_left_brace = true
|
|
461
|
+
ij_javascript_space_before_switch_parentheses = true
|
|
462
|
+
ij_javascript_space_before_try_left_brace = true
|
|
463
|
+
ij_javascript_space_before_type_colon = false
|
|
464
|
+
ij_javascript_space_before_unary_not = false
|
|
465
|
+
ij_javascript_space_before_while_keyword = true
|
|
466
|
+
ij_javascript_space_before_while_left_brace = true
|
|
467
|
+
ij_javascript_space_before_while_parentheses = true
|
|
468
|
+
ij_javascript_spaces_around_additive_operators = true
|
|
469
|
+
ij_javascript_spaces_around_arrow_function_operator = true
|
|
470
|
+
ij_javascript_spaces_around_assignment_operators = true
|
|
471
|
+
ij_javascript_spaces_around_bitwise_operators = true
|
|
472
|
+
ij_javascript_spaces_around_equality_operators = true
|
|
473
|
+
ij_javascript_spaces_around_logical_operators = true
|
|
474
|
+
ij_javascript_spaces_around_multiplicative_operators = true
|
|
475
|
+
ij_javascript_spaces_around_relational_operators = true
|
|
476
|
+
ij_javascript_spaces_around_shift_operators = true
|
|
477
|
+
ij_javascript_spaces_around_unary_operator = false
|
|
478
|
+
ij_javascript_spaces_within_array_initializer_brackets = false
|
|
479
|
+
ij_javascript_spaces_within_brackets = false
|
|
480
|
+
ij_javascript_spaces_within_catch_parentheses = false
|
|
481
|
+
ij_javascript_spaces_within_for_parentheses = false
|
|
482
|
+
ij_javascript_spaces_within_if_parentheses = false
|
|
483
|
+
ij_javascript_spaces_within_imports = false
|
|
484
|
+
ij_javascript_spaces_within_interpolation_expressions = false
|
|
485
|
+
ij_javascript_spaces_within_method_call_parentheses = false
|
|
486
|
+
ij_javascript_spaces_within_method_parentheses = false
|
|
487
|
+
ij_javascript_spaces_within_object_literal_braces = false
|
|
488
|
+
ij_javascript_spaces_within_object_type_braces = true
|
|
489
|
+
ij_javascript_spaces_within_parentheses = false
|
|
490
|
+
ij_javascript_spaces_within_switch_parentheses = false
|
|
491
|
+
ij_javascript_spaces_within_type_assertion = false
|
|
492
|
+
ij_javascript_spaces_within_union_types = true
|
|
493
|
+
ij_javascript_spaces_within_while_parentheses = false
|
|
494
|
+
ij_javascript_special_else_if_treatment = true
|
|
495
|
+
ij_javascript_ternary_operation_signs_on_next_line = false
|
|
496
|
+
ij_javascript_ternary_operation_wrap = off
|
|
497
|
+
ij_javascript_union_types_wrap = on_every_item
|
|
498
|
+
ij_javascript_use_chained_calls_group_indents = false
|
|
499
|
+
ij_javascript_use_double_quotes = true
|
|
500
|
+
ij_javascript_use_explicit_js_extension = auto
|
|
501
|
+
ij_javascript_use_path_mapping = always
|
|
502
|
+
ij_javascript_use_public_modifier = false
|
|
503
|
+
ij_javascript_use_semicolon_after_statement = true
|
|
504
|
+
ij_javascript_var_declaration_wrap = normal
|
|
505
|
+
ij_javascript_while_brace_force = if_multiline
|
|
506
|
+
ij_javascript_while_on_new_line = true
|
|
507
|
+
ij_javascript_wrap_comments = false
|
|
508
|
+
|
|
509
|
+
[{*.ctp,*.hphp,*.inc,*.module,*.php,*.php4,*.php5,*.phtml}]
|
|
510
|
+
ij_continuation_indent_size = 4
|
|
511
|
+
ij_php_align_assignments = false
|
|
512
|
+
ij_php_align_class_constants = true
|
|
513
|
+
ij_php_align_enum_cases = false
|
|
514
|
+
ij_php_align_group_field_declarations = true
|
|
515
|
+
ij_php_align_inline_comments = false
|
|
516
|
+
ij_php_align_key_value_pairs = true
|
|
517
|
+
ij_php_align_match_arm_bodies = false
|
|
518
|
+
ij_php_align_multiline_array_initializer_expression = true
|
|
519
|
+
ij_php_align_multiline_binary_operation = false
|
|
520
|
+
ij_php_align_multiline_chained_methods = false
|
|
521
|
+
ij_php_align_multiline_extends_list = false
|
|
522
|
+
ij_php_align_multiline_for = true
|
|
523
|
+
ij_php_align_multiline_parameters = true
|
|
524
|
+
ij_php_align_multiline_parameters_in_calls = false
|
|
525
|
+
ij_php_align_multiline_ternary_operation = false
|
|
526
|
+
ij_php_align_named_arguments = false
|
|
527
|
+
ij_php_align_phpdoc_comments = false
|
|
528
|
+
ij_php_align_phpdoc_param_names = false
|
|
529
|
+
ij_php_anonymous_brace_style = end_of_line
|
|
530
|
+
ij_php_api_weight = 28
|
|
531
|
+
ij_php_array_initializer_new_line_after_left_brace = true
|
|
532
|
+
ij_php_array_initializer_right_brace_on_new_line = true
|
|
533
|
+
ij_php_array_initializer_wrap = off
|
|
534
|
+
ij_php_assignment_wrap = off
|
|
535
|
+
ij_php_attributes_wrap = off
|
|
536
|
+
ij_php_author_weight = 28
|
|
537
|
+
ij_php_binary_operation_sign_on_next_line = false
|
|
538
|
+
ij_php_binary_operation_wrap = off
|
|
539
|
+
ij_php_blank_lines_after_class_header = 0
|
|
540
|
+
ij_php_blank_lines_after_function = 1
|
|
541
|
+
ij_php_blank_lines_after_imports = 1
|
|
542
|
+
ij_php_blank_lines_after_opening_tag = 0
|
|
543
|
+
ij_php_blank_lines_after_package = 0
|
|
544
|
+
ij_php_blank_lines_around_class = 1
|
|
545
|
+
ij_php_blank_lines_around_constants = 0
|
|
546
|
+
ij_php_blank_lines_around_enum_cases = 0
|
|
547
|
+
ij_php_blank_lines_around_field = 0
|
|
548
|
+
ij_php_blank_lines_around_method = 1
|
|
549
|
+
ij_php_blank_lines_before_class_end = 0
|
|
550
|
+
ij_php_blank_lines_before_imports = 1
|
|
551
|
+
ij_php_blank_lines_before_method_body = 0
|
|
552
|
+
ij_php_blank_lines_before_package = 1
|
|
553
|
+
ij_php_blank_lines_before_return_statement = 0
|
|
554
|
+
ij_php_blank_lines_between_imports = 0
|
|
555
|
+
ij_php_block_brace_style = next_line
|
|
556
|
+
ij_php_call_parameters_new_line_after_left_paren = false
|
|
557
|
+
ij_php_call_parameters_right_paren_on_new_line = false
|
|
558
|
+
ij_php_call_parameters_wrap = off
|
|
559
|
+
ij_php_catch_on_new_line = true
|
|
560
|
+
ij_php_category_weight = 28
|
|
561
|
+
ij_php_class_brace_style = next_line
|
|
562
|
+
ij_php_comma_after_last_argument = false
|
|
563
|
+
ij_php_comma_after_last_array_element = false
|
|
564
|
+
ij_php_comma_after_last_closure_use_var = false
|
|
565
|
+
ij_php_comma_after_last_match_arm = false
|
|
566
|
+
ij_php_comma_after_last_parameter = false
|
|
567
|
+
ij_php_concat_spaces = true
|
|
568
|
+
ij_php_copyright_weight = 28
|
|
569
|
+
ij_php_deprecated_weight = 28
|
|
570
|
+
ij_php_do_while_brace_force = never
|
|
571
|
+
ij_php_else_if_style = as_is
|
|
572
|
+
ij_php_else_on_new_line = true
|
|
573
|
+
ij_php_example_weight = 28
|
|
574
|
+
ij_php_extends_keyword_wrap = off
|
|
575
|
+
ij_php_extends_list_wrap = off
|
|
576
|
+
ij_php_fields_default_visibility = private
|
|
577
|
+
ij_php_filesource_weight = 28
|
|
578
|
+
ij_php_finally_on_new_line = true
|
|
579
|
+
ij_php_for_brace_force = never
|
|
580
|
+
ij_php_for_statement_new_line_after_left_paren = false
|
|
581
|
+
ij_php_for_statement_right_paren_on_new_line = false
|
|
582
|
+
ij_php_for_statement_wrap = off
|
|
583
|
+
ij_php_force_empty_methods_in_one_line = false
|
|
584
|
+
ij_php_force_short_declaration_array_style = false
|
|
585
|
+
ij_php_getters_setters_naming_style = camel_case
|
|
586
|
+
ij_php_getters_setters_order_style = getters_first
|
|
587
|
+
ij_php_global_weight = 28
|
|
588
|
+
ij_php_group_use_wrap = on_every_item
|
|
589
|
+
ij_php_if_brace_force = if_multiline
|
|
590
|
+
ij_php_if_lparen_on_next_line = false
|
|
591
|
+
ij_php_if_rparen_on_next_line = false
|
|
592
|
+
ij_php_ignore_weight = 28
|
|
593
|
+
ij_php_import_sorting = alphabetic
|
|
594
|
+
ij_php_indent_break_from_case = true
|
|
595
|
+
ij_php_indent_case_from_switch = true
|
|
596
|
+
ij_php_indent_code_in_php_tags = false
|
|
597
|
+
ij_php_internal_weight = 28
|
|
598
|
+
ij_php_keep_blank_lines_after_lbrace = 2
|
|
599
|
+
ij_php_keep_blank_lines_before_right_brace = 2
|
|
600
|
+
ij_php_keep_blank_lines_in_code = 2
|
|
601
|
+
ij_php_keep_blank_lines_in_declarations = 2
|
|
602
|
+
ij_php_keep_control_statement_in_one_line = true
|
|
603
|
+
ij_php_keep_first_column_comment = true
|
|
604
|
+
ij_php_keep_indents_on_empty_lines = false
|
|
605
|
+
ij_php_keep_line_breaks = true
|
|
606
|
+
ij_php_keep_rparen_and_lbrace_on_one_line = false
|
|
607
|
+
ij_php_keep_simple_classes_in_one_line = false
|
|
608
|
+
ij_php_keep_simple_methods_in_one_line = false
|
|
609
|
+
ij_php_lambda_brace_style = end_of_line
|
|
610
|
+
ij_php_license_weight = 28
|
|
611
|
+
ij_php_line_comment_add_space = false
|
|
612
|
+
ij_php_line_comment_at_first_column = true
|
|
613
|
+
ij_php_link_weight = 28
|
|
614
|
+
ij_php_lower_case_boolean_const = false
|
|
615
|
+
ij_php_lower_case_keywords = true
|
|
616
|
+
ij_php_lower_case_null_const = false
|
|
617
|
+
ij_php_method_brace_style = next_line
|
|
618
|
+
ij_php_method_call_chain_wrap = off
|
|
619
|
+
ij_php_method_parameters_new_line_after_left_paren = false
|
|
620
|
+
ij_php_method_parameters_right_paren_on_new_line = false
|
|
621
|
+
ij_php_method_parameters_wrap = off
|
|
622
|
+
ij_php_method_weight = 28
|
|
623
|
+
ij_php_modifier_list_wrap = false
|
|
624
|
+
ij_php_multiline_chained_calls_semicolon_on_new_line = false
|
|
625
|
+
ij_php_namespace_brace_style = 2
|
|
626
|
+
ij_php_new_line_after_php_opening_tag = false
|
|
627
|
+
ij_php_null_type_position = in_the_end
|
|
628
|
+
ij_php_package_weight = 28
|
|
629
|
+
ij_php_param_weight = 0
|
|
630
|
+
ij_php_parameters_attributes_wrap = off
|
|
631
|
+
ij_php_parentheses_expression_new_line_after_left_paren = false
|
|
632
|
+
ij_php_parentheses_expression_right_paren_on_new_line = false
|
|
633
|
+
ij_php_phpdoc_blank_line_before_tags = false
|
|
634
|
+
ij_php_phpdoc_blank_lines_around_parameters = false
|
|
635
|
+
ij_php_phpdoc_keep_blank_lines = true
|
|
636
|
+
ij_php_phpdoc_param_spaces_between_name_and_description = 1
|
|
637
|
+
ij_php_phpdoc_param_spaces_between_tag_and_type = 1
|
|
638
|
+
ij_php_phpdoc_param_spaces_between_type_and_name = 1
|
|
639
|
+
ij_php_phpdoc_use_fqcn = false
|
|
640
|
+
ij_php_phpdoc_wrap_long_lines = false
|
|
641
|
+
ij_php_place_assignment_sign_on_next_line = false
|
|
642
|
+
ij_php_place_parens_for_constructor = 0
|
|
643
|
+
ij_php_property_read_weight = 28
|
|
644
|
+
ij_php_property_weight = 28
|
|
645
|
+
ij_php_property_write_weight = 28
|
|
646
|
+
ij_php_return_type_on_new_line = false
|
|
647
|
+
ij_php_return_weight = 1
|
|
648
|
+
ij_php_see_weight = 28
|
|
649
|
+
ij_php_since_weight = 28
|
|
650
|
+
ij_php_sort_phpdoc_elements = true
|
|
651
|
+
ij_php_space_after_colon = true
|
|
652
|
+
ij_php_space_after_colon_in_enum_backed_type = true
|
|
653
|
+
ij_php_space_after_colon_in_named_argument = true
|
|
654
|
+
ij_php_space_after_colon_in_return_type = true
|
|
655
|
+
ij_php_space_after_comma = true
|
|
656
|
+
ij_php_space_after_for_semicolon = true
|
|
657
|
+
ij_php_space_after_quest = true
|
|
658
|
+
ij_php_space_after_type_cast = false
|
|
659
|
+
ij_php_space_after_unary_not = false
|
|
660
|
+
ij_php_space_before_array_initializer_left_brace = false
|
|
661
|
+
ij_php_space_before_catch_keyword = true
|
|
662
|
+
ij_php_space_before_catch_left_brace = true
|
|
663
|
+
ij_php_space_before_catch_parentheses = true
|
|
664
|
+
ij_php_space_before_class_left_brace = true
|
|
665
|
+
ij_php_space_before_closure_left_parenthesis = true
|
|
666
|
+
ij_php_space_before_colon = true
|
|
667
|
+
ij_php_space_before_colon_in_enum_backed_type = false
|
|
668
|
+
ij_php_space_before_colon_in_named_argument = false
|
|
669
|
+
ij_php_space_before_colon_in_return_type = false
|
|
670
|
+
ij_php_space_before_comma = false
|
|
671
|
+
ij_php_space_before_do_left_brace = true
|
|
672
|
+
ij_php_space_before_else_keyword = true
|
|
673
|
+
ij_php_space_before_else_left_brace = true
|
|
674
|
+
ij_php_space_before_finally_keyword = true
|
|
675
|
+
ij_php_space_before_finally_left_brace = true
|
|
676
|
+
ij_php_space_before_for_left_brace = true
|
|
677
|
+
ij_php_space_before_for_parentheses = true
|
|
678
|
+
ij_php_space_before_for_semicolon = false
|
|
679
|
+
ij_php_space_before_if_left_brace = true
|
|
680
|
+
ij_php_space_before_if_parentheses = true
|
|
681
|
+
ij_php_space_before_method_call_parentheses = false
|
|
682
|
+
ij_php_space_before_method_left_brace = true
|
|
683
|
+
ij_php_space_before_method_parentheses = false
|
|
684
|
+
ij_php_space_before_quest = true
|
|
685
|
+
ij_php_space_before_short_closure_left_parenthesis = false
|
|
686
|
+
ij_php_space_before_switch_left_brace = true
|
|
687
|
+
ij_php_space_before_switch_parentheses = true
|
|
688
|
+
ij_php_space_before_try_left_brace = true
|
|
689
|
+
ij_php_space_before_unary_not = false
|
|
690
|
+
ij_php_space_before_while_keyword = true
|
|
691
|
+
ij_php_space_before_while_left_brace = true
|
|
692
|
+
ij_php_space_before_while_parentheses = true
|
|
693
|
+
ij_php_space_between_ternary_quest_and_colon = false
|
|
694
|
+
ij_php_spaces_around_additive_operators = true
|
|
695
|
+
ij_php_spaces_around_arrow = false
|
|
696
|
+
ij_php_spaces_around_assignment_in_declare = false
|
|
697
|
+
ij_php_spaces_around_assignment_operators = true
|
|
698
|
+
ij_php_spaces_around_bitwise_operators = true
|
|
699
|
+
ij_php_spaces_around_equality_operators = true
|
|
700
|
+
ij_php_spaces_around_logical_operators = true
|
|
701
|
+
ij_php_spaces_around_multiplicative_operators = true
|
|
702
|
+
ij_php_spaces_around_null_coalesce_operator = true
|
|
703
|
+
ij_php_spaces_around_pipe_in_union_type = false
|
|
704
|
+
ij_php_spaces_around_relational_operators = true
|
|
705
|
+
ij_php_spaces_around_shift_operators = true
|
|
706
|
+
ij_php_spaces_around_unary_operator = false
|
|
707
|
+
ij_php_spaces_around_var_within_brackets = false
|
|
708
|
+
ij_php_spaces_within_array_initializer_braces = false
|
|
709
|
+
ij_php_spaces_within_brackets = false
|
|
710
|
+
ij_php_spaces_within_catch_parentheses = false
|
|
711
|
+
ij_php_spaces_within_for_parentheses = false
|
|
712
|
+
ij_php_spaces_within_if_parentheses = false
|
|
713
|
+
ij_php_spaces_within_method_call_parentheses = false
|
|
714
|
+
ij_php_spaces_within_method_parentheses = false
|
|
715
|
+
ij_php_spaces_within_parentheses = false
|
|
716
|
+
ij_php_spaces_within_short_echo_tags = true
|
|
717
|
+
ij_php_spaces_within_switch_parentheses = false
|
|
718
|
+
ij_php_spaces_within_while_parentheses = false
|
|
719
|
+
ij_php_special_else_if_treatment = false
|
|
720
|
+
ij_php_subpackage_weight = 28
|
|
721
|
+
ij_php_ternary_operation_signs_on_next_line = false
|
|
722
|
+
ij_php_ternary_operation_wrap = off
|
|
723
|
+
ij_php_throws_weight = 2
|
|
724
|
+
ij_php_todo_weight = 28
|
|
725
|
+
ij_php_treat_multiline_arrays_and_lambdas_multiline = false
|
|
726
|
+
ij_php_unknown_tag_weight = 28
|
|
727
|
+
ij_php_upper_case_boolean_const = true
|
|
728
|
+
ij_php_upper_case_null_const = true
|
|
729
|
+
ij_php_uses_weight = 28
|
|
730
|
+
ij_php_var_weight = 28
|
|
731
|
+
ij_php_variable_naming_style = mixed
|
|
732
|
+
ij_php_version_weight = 28
|
|
733
|
+
ij_php_while_brace_force = if_multiline
|
|
734
|
+
ij_php_while_on_new_line = true
|
|
735
|
+
|
|
736
|
+
[{*.har,*.jsb2,*.jsb3,*.json,.babelrc,.eslintrc,.prettierrc,.stylelintrc,bowerrc,composer.lock,jest.config}]
|
|
737
|
+
ij_json_array_wrapping = split_into_lines
|
|
738
|
+
ij_json_keep_blank_lines_in_code = 0
|
|
739
|
+
ij_json_keep_indents_on_empty_lines = false
|
|
740
|
+
ij_json_keep_line_breaks = true
|
|
741
|
+
ij_json_keep_trailing_comma = false
|
|
742
|
+
ij_json_object_wrapping = split_into_lines
|
|
743
|
+
ij_json_property_alignment = do_not_align
|
|
744
|
+
ij_json_space_after_colon = true
|
|
745
|
+
ij_json_space_after_comma = true
|
|
746
|
+
ij_json_space_before_colon = false
|
|
747
|
+
ij_json_space_before_comma = false
|
|
748
|
+
ij_json_spaces_within_braces = false
|
|
749
|
+
ij_json_spaces_within_brackets = false
|
|
750
|
+
ij_json_wrap_long_lines = false
|
|
751
|
+
|
|
752
|
+
[{*.htm,*.html,*.ng,*.sht,*.shtm,*.shtml}]
|
|
753
|
+
ij_html_add_new_line_before_tags = body,div,p,form,h1,h2,h3
|
|
754
|
+
ij_html_align_attributes = true
|
|
755
|
+
ij_html_align_text = false
|
|
756
|
+
ij_html_attribute_wrap = normal
|
|
757
|
+
ij_html_block_comment_add_space = false
|
|
758
|
+
ij_html_block_comment_at_first_column = true
|
|
759
|
+
ij_html_do_not_align_children_of_min_lines = 0
|
|
760
|
+
ij_html_do_not_break_if_inline_tags = title,h1,h2,h3,h4,h5,h6,p
|
|
761
|
+
ij_html_do_not_indent_children_of_tags = html,body,thead,tbody,tfoot
|
|
762
|
+
ij_html_enforce_quotes = false
|
|
763
|
+
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
|
|
764
|
+
ij_html_keep_blank_lines = 2
|
|
765
|
+
ij_html_keep_indents_on_empty_lines = false
|
|
766
|
+
ij_html_keep_line_breaks = true
|
|
767
|
+
ij_html_keep_line_breaks_in_text = true
|
|
768
|
+
ij_html_keep_whitespaces = false
|
|
769
|
+
ij_html_keep_whitespaces_inside = span,pre,textarea
|
|
770
|
+
ij_html_line_comment_at_first_column = true
|
|
771
|
+
ij_html_new_line_after_last_attribute = never
|
|
772
|
+
ij_html_new_line_before_first_attribute = never
|
|
773
|
+
ij_html_quote_style = double
|
|
774
|
+
ij_html_remove_new_line_before_tags = br
|
|
775
|
+
ij_html_space_after_tag_name = false
|
|
776
|
+
ij_html_space_around_equality_in_attribute = false
|
|
777
|
+
ij_html_space_inside_empty_tag = false
|
|
778
|
+
ij_html_text_wrap = normal
|
|
779
|
+
|
|
780
|
+
[{*.http,*.rest}]
|
|
781
|
+
indent_size = 0
|
|
782
|
+
ij_continuation_indent_size = 4
|
|
783
|
+
ij_http-request_call_parameters_wrap = normal
|
|
784
|
+
ij_http-request_method_parameters_wrap = split_into_lines
|
|
785
|
+
ij_http-request_space_before_comma = true
|
|
786
|
+
ij_http-request_spaces_around_assignment_operators = true
|
|
787
|
+
|
|
788
|
+
[{*.markdown,*.md}]
|
|
789
|
+
ij_markdown_force_one_space_after_blockquote_symbol = true
|
|
790
|
+
ij_markdown_force_one_space_after_header_symbol = true
|
|
791
|
+
ij_markdown_force_one_space_after_list_bullet = true
|
|
792
|
+
ij_markdown_force_one_space_between_words = true
|
|
793
|
+
ij_markdown_format_tables = true
|
|
794
|
+
ij_markdown_insert_quote_arrows_on_wrap = true
|
|
795
|
+
ij_markdown_keep_indents_on_empty_lines = false
|
|
796
|
+
ij_markdown_keep_line_breaks_inside_text_blocks = true
|
|
797
|
+
ij_markdown_max_lines_around_block_elements = 1
|
|
798
|
+
ij_markdown_max_lines_around_header = 1
|
|
799
|
+
ij_markdown_max_lines_between_paragraphs = 1
|
|
800
|
+
ij_markdown_min_lines_around_block_elements = 1
|
|
801
|
+
ij_markdown_min_lines_around_header = 1
|
|
802
|
+
ij_markdown_min_lines_between_paragraphs = 1
|
|
803
|
+
ij_markdown_wrap_text_if_long = true
|
|
804
|
+
ij_markdown_wrap_text_inside_blockquotes = true
|
|
805
|
+
|
|
806
|
+
[{*.yaml,*.yml}]
|
|
807
|
+
indent_size = 2
|
|
808
|
+
ij_yaml_align_values_properties = do_not_align
|
|
809
|
+
ij_yaml_autoinsert_sequence_marker = true
|
|
810
|
+
ij_yaml_block_mapping_on_new_line = false
|
|
811
|
+
ij_yaml_indent_sequence_value = true
|
|
812
|
+
ij_yaml_keep_indents_on_empty_lines = false
|
|
813
|
+
ij_yaml_keep_line_breaks = true
|
|
814
|
+
ij_yaml_sequence_on_new_line = false
|
|
815
|
+
ij_yaml_space_before_colon = false
|
|
816
|
+
ij_yaml_spaces_within_braces = true
|
|
817
|
+
ij_yaml_spaces_within_brackets = true
|