24 lines
575 B
JSON
24 lines
575 B
JSON
|
{
|
||
|
"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"
|
||
|
}
|