Initial commit

This commit is contained in:
2026-03-14 03:19:13 +04:00
commit 460e8e5ecf
5 changed files with 941 additions and 0 deletions

32
.editorconfig Normal file
View File

@@ -0,0 +1,32 @@
# EditorConfig is awesome: https://EditorConfig.org
# top-most EditorConfig file
root = true
# All files
[*]
charset = utf-8
insert_final_newline = true
trim_trailing_whitespace = true
# Bash, shell, sh
[*.{bash,sh}]
indent_style = space
indent_size = 2
end_of_line = lf
# JSON
[*.json]
indent_style = space
indent_size = 2
end_of_line = lf
# YAML
[*.{yaml,yml}]
indent_style = space
indent_size = 2
end_of_line = lf
# Markdown
[*.md]
trim_trailing_whitespace = false