diff options
| author | Geremia Taglialatela <[email protected]> | 2023-03-31 01:23:21 +0200 |
|---|---|---|
| committer | Geremia Taglialatela <[email protected]> | 2023-04-06 09:53:36 +0200 |
| commit | e77648b22708dd5ebb02fa8f4ff347168b1501e5 (patch) | |
| tree | 840aa77f9e195ab3cca0879d1f1174aaf8f25465 | |
| parent | c5ddbe7cd9bb15e8b247e6b5a5e359d02dd5b9fe (diff) | |
| download | caxlsx-e77648b22708dd5ebb02fa8f4ff347168b1501e5.tar.gz caxlsx-e77648b22708dd5ebb02fa8f4ff347168b1501e5.zip | |
Add a default editor config
EditorConfig helps maintain consistent coding styles for multiple developers
working on the same project across various editors and IDEs.
Ref: https://editorconfig.org/
| -rw-r--r-- | .editorconfig | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..f29d257c --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +# editorconfig.org + +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 2 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true |
