# ============================================================
# Veza/Talas — EditorConfig
# Standardisation des éditeurs pour un projet multi-langage
# ============================================================

root = true

[*]
charset = utf-8
indent_style = space
indent_size = 4
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

[*.{js,ts,jsx,tsx}]
indent_size = 2

[*.go]
indent_size = 4
indent_style = tab

[*.rs]
indent_size = 4

[Makefile]
indent_style = tab

