.editorconfig 392 B

123456789101112131415
  1. [*.js]
  2. indent_style = space;
  3. indent_size = 2;
  4. continuation_indent_size = 2;
  5. insert_final_newline = true;
  6. quote_type = single;
  7. space_after_anonymous_functions = true;
  8. space_after_control_statements = true;
  9. spaces_around_operators = true;
  10. trim_trailing_whitespace = true;
  11. spaces_in_brackets = false;
  12. curly_bracket_next_line = true;
  13. indent_brace_style = 1TBS;
  14. end_of_line = lf;
  15. charset = utf-8;