[add] librephotos
This commit is contained in:
parent
ebc53109d4
commit
a23428dec3
44 changed files with 2123 additions and 0 deletions
23
librephotos-docker/vscode/settings.json
Normal file
23
librephotos-docker/vscode/settings.json
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"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"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue