Spaces:
Runtime error
Runtime error
| # 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 markdown | |
| [*.md] | |
| # trailing whitespace is significant in markdown -> do not remove | |
| trim_trailing_whitespace = false | |