Project editing and testing configuration bumpf
This commit is contained in:
parent
4011c1fa47
commit
2e4b981aa7
8 changed files with 139 additions and 0 deletions
25
.editorconfig
Normal file
25
.editorconfig
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
# Defines coding style rules for most editors and IDEs
|
||||
# See: https://editorconfig.org
|
||||
|
||||
root = true
|
||||
|
||||
[*]
|
||||
end_of_line = lf
|
||||
charset = utf-8
|
||||
insert_final_newline = true
|
||||
indent_style = space
|
||||
indent_size = 4
|
||||
trim_trailing_whitespace = true
|
||||
|
||||
[*.{json,html,xml,yml,yaml}]
|
||||
indent_size = 2
|
||||
|
||||
[*.csv]
|
||||
end_of_line = crlf
|
||||
trim_trailing_whitespace = false
|
||||
|
||||
[*.md]
|
||||
trim_trailing_whitespace = false
|
||||
|
||||
[Makefile]
|
||||
indent_style = tab
|
||||
Loading…
Add table
Add a link
Reference in a new issue