Skip to content

Instantly share code, notes, and snippets.

@diegosparente
Created March 15, 2025 22:10
Show Gist options
  • Save diegosparente/10dd19a82ba8e5eb3e6092461d107182 to your computer and use it in GitHub Desktop.
Save diegosparente/10dd19a82ba8e5eb3e6092461d107182 to your computer and use it in GitHub Desktop.
editorconfig-python
# 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