diff options
author | Nicolas Bock <nicolas.bock@canonical.com> | 2021-09-10 12:11:08 -0600 |
---|---|---|
committer | Jake Hunsaker <jhunsake@redhat.com> | 2021-09-14 13:03:21 -0400 |
commit | 623a8afd64b5d6e2cfe8a5e4511e9a6418a948bb (patch) | |
tree | 68e1231f86b848614908b41f6ef1ba6b27cb73bc /.editorconfig | |
parent | fdbc3a8cb7e4788453274c25e6c865b1e783d6f4 (diff) | |
download | sos-623a8afd64b5d6e2cfe8a5e4511e9a6418a948bb.tar.gz |
Add `editorconfig` for basic editor settings
EditorConfig is fairly editor agnostic and is understood by a wide
range of editors/IDEs [1].
Signed-off-by: Nicolas Bock <nicolas.bock@canonical.com>
[1] https://editorconfig.org/
Diffstat (limited to '.editorconfig')
-rw-r--r-- | .editorconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..4933e572 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,9 @@ +root = true + +[*] +end_of_line = lf +insert_final_newline = true + +[*.py] +indent_style = space +indent_size = 4 |