diff options
author | Christian Kohlstedde <christian@kohlsted.de> | 2020-07-22 21:48:16 +0200 |
---|---|---|
committer | Christian Kohlstedde <christian@kohlsted.de> | 2020-07-22 21:48:16 +0200 |
commit | 39a82750e85da6c0503121f26ac24eb046c9b5de (patch) | |
tree | 21ae763e30d41fa6c1cab57a01c0e109f2a50f88 /.editorconfig | |
parent | 63e870e6ad07fa7abad0d76038ffe97ac2e1a8e0 (diff) | |
download | rofi-pass-39a82750e85da6c0503121f26ac24eb046c9b5de.tar.gz |
Add editorconfig
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..f068930 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,19 @@ +root = true + +[*] +end_of_line = lf +insert_final_newline = true +charset = utf-8 +trim_trailing_whitespace = true + +indent_style = tab + +[Makefile] +indent_style = tab + +[*.md] +trim_trailing_whitespace = false + +[*.py] +indent_style = space +indent_size = 4 |