Update linter config for VS code

This commit is contained in:
Dale Myers 2023-11-24 16:14:11 +00:00
Родитель d1d1243a9d
Коммит b44a690ac8
2 изменённых файлов: 5 добавлений и 8 удалений

7
.vscode/settings.json поставляемый
Просмотреть файл

@ -1,15 +1,12 @@
{
"python.pythonPath": "venv/bin/python",
"python.testing.pytestArgs": [
"tests"
],
"python.testing.unittestEnabled": false,
"python.testing.nosetestsEnabled": false,
"python.testing.pytestEnabled": true,
"editor.formatOnSave": true,
"python.formatting.provider": "black",
"python.formatting.blackArgs": [
"black-formatter.args": [
"-l",
"100"
]
],
}

Просмотреть файл

@ -2,9 +2,9 @@
pushd "${VIRTUAL_ENV}/.." > /dev/null
python -m black -l 100 xcodeproj/*.py tests/*.py
python -m pylint --rcfile=pylintrc xcodeproj tests
python -m mypy --ignore-missing-imports xcodeproj/ tests/
python3 -m black -l 100 xcodeproj/*.py tests/*.py
python3 -m pylint --rcfile=pylintrc xcodeproj tests
python3 -m mypy --ignore-missing-imports xcodeproj/ tests/
popd > /dev/null