11 lines
272 B
JSON
11 lines
272 B
JSON
|
{
|
||
|
// The following will hide Python's build cache directories.
|
||
|
"files.exclude": {
|
||
|
"**/__pycache__": true,
|
||
|
"**/*.egg-info": true,
|
||
|
"**/.pytest_cache": true
|
||
|
},
|
||
|
"python.linting.enabled": true,
|
||
|
"python.linting.pylintEnabled": true
|
||
|
}
|