initial commit

This commit is contained in:
2022-11-07 13:09:12 +01:00
commit 5d4a5d95a8
8 changed files with 5743 additions and 0 deletions

28
.editorconfig Normal file
View File

@@ -0,0 +1,28 @@
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
# Python settings
[*.py]
line_length=120
indent_style = space
indent_size = 4
# JavaScript, JSX, CSS, SCSS, HTML settings
[*.{js,jsx,css,scss,html}]
indent_style = space
indent_size = 4
# Markdown settings
[*.md]
trim_trailing_whitespace = false
# Config files
[*.conf]
indent_style = space
indent_size = 4