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
| # Check for updating hooks to last versions https://pre-commit.com/index.html#updating-hooks-automatically | |
| fail_fast: true | |
| repos: | |
| - repo: https://github.com/psf/black | |
| rev: 23.1.0 | |
| hooks: | |
| - id: black | |
| exclude: ^.*\b(migrations)\b.*$ | |
| - repo: https://github.com/pycqa/isort | |
| rev: 5.10.1 |
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
| ; This file is for unifying the coding style for different editors and IDEs. | |
| ; More information at http://EditorConfig.org | |
| root = true | |
| [*] | |
| charset = utf-8 | |
| end_of_line = lf | |
| insert_final_newline = true | |
| trim_trailing_whitespace = true |
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
| # Check for updating hooks to last versions https://pre-commit.com/index.html#updating-hooks-automatically | |
| fail_fast: true | |
| repos: | |
| - repo: https://github.com/psf/black | |
| rev: 23.1.0 | |
| hooks: | |
| - id: black | |
| exclude: ^.*\b(migrations)\b.*$ | |
| - repo: https://github.com/pycqa/isort | |
| rev: 5.10.1 |
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
| # .gitgnore file for Python & Django projects | |
| # This is a fork of https://www.toptal.com/developers/gitignore/api/python | |
| ### Usage ### | |
| # Add to yours' project | |
| # git rm -r --cached . | |
| # git add . | |
| # git commit -am "Removed ignored files" | |
| # Python |