thedocks/librephotos-docker/vscode/settings.json

24 lines
575 B
JSON
Raw Normal View History

2023-01-14 17:48:03 +00:00
{
"files.exclude": {
"**/*.py[co]": true,
"**/*.so": true,
"**/__pycache__": true
},
"python.pythonPath": "/usr/local/bin/python",
"python.linting.enabled": true,
"python.linting.flake8Enabled": true,
"python.linting.flake8Args": [
"--exclude: .+/migrations/",
"--max-line-length=119"
],
"python.linting.pylintArgs": [
"--load-plugins=pylint_django",
"-d",
"E0239",
"-d",
"C0111"
],
"python.linting.pylintEnabled": true,
"python.sortImports.path": "isort"
}