1
0

chore: initial commit

Signed-off-by: Alan Brault <alan.brault@visus.io>
This commit is contained in:
2026-03-01 07:57:28 -05:00
commit 4c81006729
24 changed files with 825 additions and 0 deletions

50
.editorconfig Normal file
View File

@@ -0,0 +1,50 @@
# EditorConfig is awesome: https://EditorConfig.org
# top-most EditorConfig file
root = true
# Unix-style newlines with a newline ending every file
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
# Kotlin files
[*.{kt,kts}]
indent_style = space
indent_size = 4
continuation_indent_size = 4
max_line_length = 120
ij_kotlin_allow_trailing_comma = true
ij_kotlin_allow_trailing_comma_on_call_site = true
# Gradle files
[*.gradle.kts]
indent_style = space
indent_size = 4
# YAML files (for application.yml, etc.)
[*.{yml,yaml}]
indent_style = space
indent_size = 2
# JSON files
[*.json]
indent_style = space
indent_size = 2
# XML files (for Maven, Spring configs, etc.)
[*.xml]
indent_style = space
indent_size = 2
# Markdown files
[*.md]
trim_trailing_whitespace = false
max_line_length = off
# Properties files
[*.properties]
indent_style = space
indent_size = 4