.editorconfig 306 B

123456789101112131415161718192021
  1. # editorconfig.org
  2. # author: axin
  3. root = true
  4. [*]
  5. indent_style = space
  6. indent_size = 2
  7. end_of_line = lf
  8. charset = utf-8
  9. trim_trailing_whitespace = true
  10. insert_final_newline = true
  11. [*.py]
  12. indent_style = space
  13. indent_size = 4
  14. [*.md]
  15. trim_trailing_whitespace = false
  16. [COMMIT_EDITMSG]
  17. max_line_length = 80