EditorConfig defaults & prettier ignore #83

Open
beanie wants to merge 2 commits from beanie/out-of-your-element:editor-config into main
2 changed files with 21 additions and 0 deletions
Showing only changes of commit 088aa32b0e - Show all commits

16
.editorconfig Normal file
View file

@ -0,0 +1,16 @@
root = true
[*]
indent_style = tab
tab_width = 3
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[*.json]
indent_style = space
indent_size = 2
[*.md]
trim_trailing_whitespace = false

5
.vscode/extensions.json vendored Normal file
View file

@ -0,0 +1,5 @@
{
"recommendations": [
"editorconfig.editorconfig"
]
}