.editorconfig 283 B

1234567891011121314151617
  1. root = true
  2. [*]
  3. charset = utf-8
  4. trim_trailing_whitespace = true
  5. insert_final_newline = true
  6. [*.{js,gradle}]
  7. indent_style = space
  8. indent_size = 2
  9. continuation_indent_size = 4
  10. [*.java]
  11. indent_style = space
  12. indent_size = 4
  13. continuation_indent_size = 8
  14. spaces_around_operators = true