new folder structure
This commit is contained in:
46
.editorconfig
Normal file
46
.editorconfig
Normal 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
|
||||
Reference in New Issue
Block a user