Created
March 15, 2025 22:10
-
-
Save diegosparente/10dd19a82ba8e5eb3e6092461d107182 to your computer and use it in GitHub Desktop.
editorconfig-python
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# EditorConfig para seguir a PEP 8 (estilo de código Python) | |
root = true | |
# Config gerais para todos os arquivos | |
[*] | |
charset = utf-8 | |
end_of_line = lf | |
insert_final_newline = true | |
trim_trailing_whitespace = true | |
# Config específicas | |
[*.py] | |
indent_style = space | |
indent_size = 4 | |
max_line_length = 79 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment