.editorconfig 892 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # debian/.editorconfig
  2. # EditorConfig configuration for Debian packaging files.
  3. # Homepage: <URL:http://editorconfig.org/>
  4. # Is this the project-root configuration file?
  5. root = false
  6. [*]
  7. # Character encoding to use.
  8. charset = utf-8
  9. # Indentation style (“tab”, “space”).
  10. indent_style = space
  11. # How many columns (integer) for each indentation level.
  12. indent_size = 4
  13. # How many columns (integer) to represent a U+0008 TAB.
  14. tab_width = 8
  15. # How many characters (integer) before enforcing line wrap.
  16. max_line_length = 79
  17. # Remove trailing whitespace on each line?
  18. trim_trailing_whitespace = true
  19. # Line break style (“lf”, “cr”, “crlf”).
  20. end_of_line = lf
  21. # Ensure file ends with a line break?
  22. insert_final_newline = true
  23. [{*.mk,Makefile,rules}]
  24. indent_style = tab
  25. # Local variables:
  26. # coding: utf-8
  27. # mode: conf
  28. # End:
  29. # vim: fileencoding=utf-8 filetype=conf :