Enable editorconfig to enforce formatting, make sure build-and-serve works

This commit is contained in:
Yuri Sizov
2023-01-13 22:55:12 +03:00
parent faf4391edb
commit ac508cedf9
5 changed files with 47 additions and 9 deletions

13
.editorconfig Normal file
View File

@@ -0,0 +1,13 @@
root = true
[*]
charset = utf-8
end_of_line = lf
indent_style = tab
insert_final_newline = true
trim_trailing_whitespace = true
# YAML requires indentation with spaces instead of tabs.
[*.{yml,yaml}]
indent_style = space
indent_size = 2