diff --git a/.editorconfig b/.editorconfig deleted file mode 100644 index 8ba9cf3..0000000 --- a/.editorconfig +++ /dev/null @@ -1,15 +0,0 @@ -# EditorConfig -# https://editorconfig.org/ - -root = true - -[*] -indent_style = space -indent_size = 2 -end_of_line = lf -charset = utf-8 -trim_trailing_whitespace = true -insert_final_newline = true - -[*.py] -indent_size = 4 diff --git a/.gitignore b/.gitignore index 58a8a63..82bab4b 100644 --- a/.gitignore +++ b/.gitignore @@ -8,7 +8,6 @@ __pycache__/ # Distribution / packaging .Python -env/ build/ develop-eggs/ dist/ @@ -21,9 +20,11 @@ parts/ sdist/ var/ wheels/ +share/python-wheels/ *.egg-info/ .installed.cfg *.egg +MANIFEST # PyInstaller # Usually these files are written by a python script from a template @@ -38,6 +39,7 @@ pip-delete-this-directory.txt # Unit test / coverage reports htmlcov/ .tox/ +.nox/ .coverage .coverage.* .cache @@ -45,6 +47,7 @@ nosetests.xml coverage.xml *.cover .hypothesis/ +.pytest_cache/ # Translations *.mo @@ -53,6 +56,7 @@ coverage.xml # Django stuff: *.log local_settings.py +db.sqlite3 # Flask stuff: instance/ @@ -70,6 +74,10 @@ target/ # Jupyter Notebook .ipynb_checkpoints +# IPython +profile_default/ +ipython_config.py + # pyenv .python-version @@ -79,13 +87,14 @@ celerybeat-schedule # SageMath parsed files *.sage.py -# dotenv +# Environments .env - -# virtualenv .venv +env/ venv/ ENV/ +env.bak/ +venv.bak/ # Spyder project settings .spyderproject @@ -99,20 +108,23 @@ ENV/ # mypy .mypy_cache/ +.dmypy.json +dmypy.json -# PyCharm -.idea/ - -# cookies JSON -/*.json - -# course dir -* - */ +# Pyre type checker +.pyre/ -# Visual Studio Code -.vscode/ - -# Node +# Node.js node_modules/ yarn.lock +package.json +.huskyrc +.editorconfig commitlint.config.js + +# draft +draft/ + +# IDEs/editors +.vscode/ +.idea/