17 lines
436 B
JSON
17 lines
436 B
JSON
{
|
|
"files.exclude": {
|
|
"**/.git": true,
|
|
"**/.svn": true,
|
|
"**/.hg": true,
|
|
"**/CVS": true,
|
|
"**/.DS_Store": true,
|
|
"**/__pycache__": true,
|
|
".mypy_cache": true
|
|
},
|
|
"python.linting.flake8Enabled": true,
|
|
"python.linting.mypyEnabled": true,
|
|
"python.linting.pylintEnabled": true,
|
|
"python.linting.flake8Args": [
|
|
"--max-line-length=120"
|
|
]
|
|
}
|