new folder structure

This commit is contained in:
2025-09-29 09:17:13 +02:00
parent 38117ab875
commit 78fc6068fb
197 changed files with 3490 additions and 1117 deletions

46
.editorconfig Normal file
View File

@@ -0,0 +1,46 @@
# 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
indent_style = space
indent_size = 4
# Python files
[*.py]
max_line_length = 88
indent_size = 4
# Web files
[*.{html,css,js,json,yaml,yml}]
indent_size = 2
# Markdown files
[*.md]
trim_trailing_whitespace = false
# Configuration files
[*.{ini,cfg,conf,toml}]
indent_size = 4
# Docker files
[{Dockerfile*,*.dockerfile}]
indent_size = 4
# Shell scripts
[*.{sh,bat}]
indent_size = 4
# SQL files
[*.sql]
indent_size = 2
# Template files
[*.{j2,jinja,jinja2}]
indent_size = 2