diff options
| author | LMBishop <13875753+LMBishop@users.noreply.github.com> | 2021-11-22 14:34:26 +0000 |
|---|---|---|
| committer | LMBishop <13875753+LMBishop@users.noreply.github.com> | 2021-11-22 14:34:26 +0000 |
| commit | 87b1cd4936c6ad671c0cf6efc10f856454ac65f3 (patch) | |
| tree | c2e0670c3de6e89bc91f9bad3b8a67516bec1374 /.editorconfig | |
| parent | e036148e9df9c5e032cb26c42614d65a6e4b3695 (diff) | |
Enforce .editorconfig
Diffstat (limited to '.editorconfig')
| -rw-r--r-- | .editorconfig | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..581917f --- /dev/null +++ b/.editorconfig @@ -0,0 +1,23 @@ +# http://editorconfig.org +root = true + +[*] +end_of_line = lf +insert_final_newline = true + +[app/**.*js] +charset = utf-8 +indent_style = space +indent_size = 4 + +[*.yml] +indent_style = space +indent_size = 2 + +[node_modules/**] +charset = unset +end_of_line = unset +insert_final_newline = unset +trim_trailing_whitespace = unset +indent_style = unset +indent_size = unset |
