chore: first commit

This commit is contained in:
Clément Désiles
2025-07-25 20:23:54 +02:00
parent 5c4016357f
commit c612cc7839
88 changed files with 3255 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
# EditorConfig is awesome: https://EditorConfig.org
# top-most EditorConfig file
root = true
# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true
# Matches multiple files with brace expansion notation
# Set default charset
[*.{js,py}]
charset = utf-8
# 2 space indentation
[*.{yml,sh},Vagrantfile,Dockerfile*]
indent_size = 2
indent_style = space
# 4 space indentation
[*.{py,md}]
indent_size = 4
indent_style = space
# Tab indentation (no size specified)
[Makefile]
indent_style = tab
tab_width = 8