Generate a Python package project using the Python Cookiecutter package
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 satır
543B

  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