Code style property names fixes (e.g. IDEA-206769)

This commit is contained in:
Rustam Vishnyakov
2019-02-11 20:10:47 +03:00
parent 20547a9f59
commit 02455a3118
4 changed files with 15 additions and 11 deletions

View File

@@ -177,7 +177,7 @@
"space_after_quest": true,
"space_after_type_cast": true,
"space_before_annotation_array_initializer_left_brace": false,
"space_before_anotation_parameter_list": false,
"space_before_annotation_parameter_list": false,
"space_before_array_initializer_left_brace": false,
"space_before_catch_keyword": true,
"space_before_catch_left_brace": true,
@@ -212,6 +212,9 @@
"space_before_while_left_brace": true,
"space_before_while_parentheses": true,
"space_inside_one_line_enum_braces": false,
"space_within_empty_array_initializer_braces": false,
"space_within_empty_method_call_parentheses": false,
"space_within_empty_method_parentheses": false,
"spaces_around_additive_operators": true,
"spaces_around_assignment_operators": true,
"spaces_around_bitwise_operators": true,
@@ -231,9 +234,6 @@
"spaces_within_brackets": false,
"spaces_within_cast_parentheses": false,
"spaces_within_catch_parentheses": false,
"spaces_within_empty_array_initializer_braces": false,
"spaces_within_empty_method_call_parentheses": false,
"spaces_within_empty_method_parentheses": false,
"spaces_within_for_parentheses": false,
"spaces_within_if_parentheses": false,
"spaces_within_method_call_parentheses": false,

View File

@@ -160,7 +160,7 @@
"space_after_quest": true,
"space_after_type_cast": true,
"space_before_annotation_array_initializer_left_brace": false,
"space_before_anotation_parameter_list": false,
"space_before_annotation_parameter_list": false,
"space_before_array_initializer_left_brace": false,
"space_before_catch_keyword": true,
"space_before_catch_left_brace": true,
@@ -195,6 +195,9 @@
"space_before_while_left_brace": true,
"space_before_while_parentheses": true,
"space_inside_one_line_enum_braces": false,
"space_within_empty_array_initializer_braces": false,
"space_within_empty_method_call_parentheses": false,
"space_within_empty_method_parentheses": false,
"spaces_around_additive_operators": true,
"spaces_around_assignment_operators": true,
"spaces_around_bitwise_operators": true,
@@ -214,9 +217,6 @@
"spaces_within_brackets": false,
"spaces_within_cast_parentheses": false,
"spaces_within_catch_parentheses": false,
"spaces_within_empty_array_initializer_braces": false,
"spaces_within_empty_method_call_parentheses": false,
"spaces_within_empty_method_parentheses": false,
"spaces_within_for_parentheses": false,
"spaces_within_if_parentheses": false,
"spaces_within_method_call_parentheses": false,

View File

@@ -531,6 +531,7 @@ public class CommonCodeStyleSettings {
* or
* "f()"
*/
@Property(externalName = "space_within_empty_method_call_parentheses")
public boolean SPACE_WITHIN_EMPTY_METHOD_CALL_PARENTHESES = false;
/**
@@ -545,6 +546,7 @@ public class CommonCodeStyleSettings {
* or
* "void f()"
*/
@Property(externalName = "space_within_empty_method_parentheses")
public boolean SPACE_WITHIN_EMPTY_METHOD_PARENTHESES = false;
/**
@@ -629,6 +631,7 @@ public class CommonCodeStyleSettings {
* or
* "int X[] {}"
*/
@Property(externalName = "space_within_empty_array_initializer_braces")
public boolean SPACE_WITHIN_EMPTY_ARRAY_INITIALIZER_BRACES = false;
public boolean SPACE_AFTER_TYPE_CAST = true;
@@ -921,6 +924,7 @@ public class CommonCodeStyleSettings {
public int PARAMETER_ANNOTATION_WRAP = DO_NOT_WRAP;
public int VARIABLE_ANNOTATION_WRAP = DO_NOT_WRAP;
@Property(externalName = "space_before_annotation_parameter_list")
public boolean SPACE_BEFORE_ANOTATION_PARAMETER_LIST = false;
public boolean SPACE_WITHIN_ANNOTATION_PARENTHESES = false;

View File

@@ -533,9 +533,9 @@ codestyle.property.description.spaces_within_braces=TBD
codestyle.property.description.spaces_within_brackets=TBD
codestyle.property.description.spaces_within_cast_parentheses=TBD
codestyle.property.description.spaces_within_catch_parentheses=TBD
codestyle.property.description.spaces_within_empty_array_initializer_braces=TBD
codestyle.property.description.spaces_within_empty_method_call_parentheses=TBD
codestyle.property.description.spaces_within_empty_method_parentheses=TBD
codestyle.property.description.space_within_empty_array_initializer_braces=TBD
codestyle.property.description.space_within_empty_method_call_parentheses=TBD
codestyle.property.description.space_within_empty_method_parentheses=TBD
codestyle.property.description.spaces_within_for_parentheses=TBD
codestyle.property.description.spaces_within_if_parentheses=TBD
codestyle.property.description.spaces_within_method_call_parentheses=TBD