Move editorconfig and prettierrc files to project root

This commit is contained in:
Z. Charles Dziura 2024-08-06 11:07:12 -04:00
parent ea55231602
commit 0bb3f64542
2 changed files with 23 additions and 0 deletions

11
.editorconfig Normal file
View file

@ -0,0 +1,11 @@
# Generated by editorconfig.timseverien.com
# https://editor.timseverien.com/#config
root = true
[*]
charset = utf-8
end_of_line = lf
indent_style = tab
insert_final_newline = true
tab_width = 4
trim_trailing_whitespace = true

12
.prettierrc.json Normal file
View file

@ -0,0 +1,12 @@
{
"tabs": true,
"tabWidth": 4,
"overrides": [
{
"files": "*.html",
"options": {
"tabWidth": 2
}
}
]
}