Generate a Python package project using the Python Cookiecutter package
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

12345678910111213141516171819202122232425262728293031
  1. # https://EditorConfig.org
  2. # top-most EditorConfig file
  3. root = true
  4. # Unix-style newlines with a newline ending every file
  5. [*]
  6. end_of_line = lf
  7. insert_final_newline = true
  8. # Matches multiple files with brace expansion notation
  9. # Set default charset
  10. [*.{js,py}]
  11. charset = utf-8
  12. # 2 space indentation
  13. [*.{js,json,yaml}]
  14. indent_style = space
  15. indent_size = 2
  16. # 4 space indentation
  17. [*.py]
  18. indent_style = space
  19. indent_size = 4
  20. # Tab indentation (no size specified)
  21. [{Makefile,*.bat}]
  22. indent_style = tab
  23. [LICENSE]
  24. insert_final_newline = false