Spaces:
Running
Running
File size: 501 Bytes
38fb4a1 7d4eb47 38fb4a1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
# EditorConfig is awesome!
# Mark this as the root editorconfig file
root = true
# Base ruleset for all files
[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
# Override rules for python
[*.py]
indent_size = 4
# Override rules for Juptyer notebooks
[*.ipynb]
indent_size = 4
# Override rules for markdown
[*.md]
# trailing whitespace is significant in markdown -> do not remove
trim_trailing_whitespace = false
|