Basic editorconfig support (#422)

Almost every IDE or texteditor supports
[editorconfig](https://editorconfig.org/).
I've set it up to just enforce the 2 space python indents for now.
This commit is contained in:
Daniel Davis 2022-11-08 13:34:25 -05:00 committed by GitHub
parent c3d9c9b24c
commit 4998bf49b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

4
.editorconfig Normal file
View File

@ -0,0 +1,4 @@
# 2 space indentation
[*.py]
indent_style = space
indent_size = 2