A cli program to easily handle .gitignore files
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.

23 lines
549 B

  1. root = true
  2. [*]
  3. charset = utf-8
  4. end_of_line = lf
  5. indent_style = space
  6. indent_size = 4
  7. insert_final_newline = false
  8. trim_trailing_whitespace = true
  9. # justfile uses Makefile-like significant indentation
  10. # but doesn't have a problem with blank lines staying un-indented
  11. # within an indented block
  12. [justfile]
  13. indent_style = tab
  14. trim_trailing_whitespace = true
  15. # If I have a TODO file, I want the outline lists to line up nicely and
  16. # .travis.yml just uses 2-space indentation by convention
  17. [{.travis.yml, TODO}]
  18. indent_style = space
  19. indent_size = 2