diff options
author | Hisiste <38370207+Hisiste@users.noreply.github.com> | 2023-04-19 07:35:42 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-19 07:35:42 -0600 |
commit | 69e3906b34243346222d5a9d4c048c6cc90ed47b (patch) | |
tree | b9685c352b595160202f98682bc4baaa0ed564c5 /.editorconfig | |
download | personal-web-69e3906b34243346222d5a9d4c048c6cc90ed47b.tar.gz personal-web-69e3906b34243346222d5a9d4c048c6cc90ed47b.zip |
Initial commit
Diffstat (limited to '.editorconfig')
-rw-r--r-- | .editorconfig | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..2b740bf --- /dev/null +++ b/.editorconfig @@ -0,0 +1,19 @@ +root = true + +[*] +charset = utf-8 +indent_style = space +indent_size = 2 +trim_trailing_whitespace = true +# Unix-style newlines with a newline ending every file +end_of_line = lf +insert_final_newline = true + +[*.{js,css,scss}] +quote_type = single + +[*.{yml,yaml}] +quote_type = double + +[*.md] +trim_trailing_whitespace = false |