sentiment-analysis / .editorconfig
Tymec's picture
chore: Update project configuration
7d4eb47
raw
history blame
No virus
501 Bytes
# 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