diff options
author | nea <romangraef@gmail.com> | 2021-08-10 23:53:54 +0200 |
---|---|---|
committer | nea <romangraef@gmail.com> | 2021-08-10 23:53:54 +0200 |
commit | 87f1eb3dc6c03a1369a71523a526c861efc25b80 (patch) | |
tree | d5ca03666dee38a124565e39533a921f91c409f0 /.editorconfig | |
download | webos-87f1eb3dc6c03a1369a71523a526c861efc25b80.tar.gz webos-87f1eb3dc6c03a1369a71523a526c861efc25b80.tar.bz2 webos-87f1eb3dc6c03a1369a71523a526c861efc25b80.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..9d25d1d --- /dev/null +++ b/.editorconfig @@ -0,0 +1,19 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = tab +indent_style = tab +insert_final_newline = true +max_line_length = 120 +trim_trailing_whitespace = true + +[*.{kt,kts}] +tab_width = 4 + +[*.html] +tab_width = 4 + +[*.{json,conf}] +tab_width = 2 |