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

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