.editorconfig 320 B

123456789101112131415161718192021
  1. # EditorConfig is awesome: https://EditorConfig.org
  2. # top-most EditorConfig file
  3. root = true
  4. [*]
  5. charset = utf-8
  6. end_of_line = lf
  7. indent_style = space
  8. insert_final_newline = true
  9. trim_trailing_whitespace = false
  10. max_line_length = 120
  11. [*.sol]
  12. indent_size = 4
  13. [*.js]
  14. indent_size = 2
  15. [*.{adoc,md}]
  16. max_line_length = 0