diff options
author | David Luevano Alvarado <david@luevano.xyz> | 2023-08-21 23:45:42 -0600 |
---|---|---|
committer | David Luevano Alvarado <david@luevano.xyz> | 2023-08-21 23:45:42 -0600 |
commit | 19b23dd2ba0dfc97ed5bbfba02eaeeb0dca88919 (patch) | |
tree | 3f93b176841f197dddceed94308b1eb1abbd66eb | |
parent | ffe145a6c67afed6fb68326edbc91cbd94a3f846 (diff) |
feat: add .editorconfig
-rw-r--r-- | .editorconfig | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..e5df077 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,14 @@ +# https://EditorConfig.org +# top-most EditorConfig file +root = true + +# Unix-style newlines with a newline ending every file +[*] +end_of_line = lf +insert_final_newline = true +charset = utf-8 + +# 4 space indentation +[*.py] +indent_style = space +indent_size = 4 |