Skip to content

Commit

Permalink
Add rule for spaces around if, try, and loop statements
Browse files Browse the repository at this point in the history
  • Loading branch information
nikammerlaan committed Aug 4, 2023
1 parent e3ef890 commit d0981b3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,9 @@ insert_final_newline = true
[*.java]
ij_java_names_count_to_use_import_on_demand = 5
ij_java_class_count_to_use_import_on_demand = 5
ij_java_space_before_if_parentheses = true
ij_java_space_before_for_parentheses = true
ij_java_space_before_try_parentheses = true
ij_java_space_before_catch_parentheses = true
ij_java_space_before_while_parentheses = true
ij_java_space_before_switch_parentheses = true

0 comments on commit d0981b3

Please sign in to comment.