You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
399 B

  1. # top-most EditorConfig file
  2. root = true
  3. # Set our default format parameters.
  4. [*]
  5. charset = utf-8
  6. indent_size = 4
  7. end_of_line = lf
  8. insert_final_newline = true
  9. trim_trailing_whitespace = true
  10. max_line_length = 120
  11. # Use python standard indentation for python files.
  12. [*.py]
  13. indent_style = space
  14. # Use tabs for our C files, to match coding conventions of our submodues.
  15. [*.{c,h}]
  16. indent_style = tab