This commit is contained in:
Jacob Windsor 2025-02-19 12:43:19 +01:00
parent 861eac6d46
commit 267a0e1512
3 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,8 @@
{
"python.defaultInterpreterPath": ".venv/bin/python",
"editor.formatOnSave": true,
"[python]": {
"editor.defaultFormatter": "ms-python.python",
"editor.formatOnSave": true,
},
}

View File

@ -11,6 +11,9 @@ venv:
install:
$(VENV_DIR)/bin/pip install -r $(REQ_FILE)
install-dev:
$(VENV_DIR)/bin/pip install -r $(REQ_FILE) -r requirements-dev.txt
# Run the application
start: install
$(VENV_DIR)/bin/python $(APP_NAME)

4
requirements-dev.txt Normal file
View File

@ -0,0 +1,4 @@
pylint
black
isort
flake8