infrastructure/.editorconfig
histalek 39476da79e
Add self-documenting Makefile
This Makefile is quite simple for now. But in the future i plan to
create multiple ansible role skeletons and this Makefile can simplify
the usage of these quite a bit.

I learned about self-documenting Makefiles from Sheo's Blog [1] and the
referenced article from Victoria Drake [2].

[1] https://shivering-isles.com/til/2021/05/self-documenting-makefiles
[2] https://victoria.dev/blog/how-to-create-a-self-documenting-makefile/
2021-06-02 23:31:44 +02:00

21 lines
327 B
INI

# http://editorconfig.org
root = true
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
[Makefile]
indent_style = tab
[*.md]
insert_final_newline = false
trim_trailing_whitespace = false
[*.{yaml,yml}]
indent_size = 2
indent_style = space