31 lines
832 B
JSON
31 lines
832 B
JSON
{
|
|
"files.insertFinalNewline": true,
|
|
"files.trimFinalNewlines": true,
|
|
"files.trimTrailingWhitespace": true,
|
|
"files.associations": {
|
|
".pylintrc": "ini"
|
|
},
|
|
"python.testing.unittestEnabled": false,
|
|
"python.testing.nosetestsEnabled": false,
|
|
"python.testing.pytestEnabled": true,
|
|
"python.linting.pylintUseMinimalCheckers": false,
|
|
"[python]": {
|
|
"editor.rulers": [
|
|
80
|
|
],
|
|
"editor.tabSize": 2,
|
|
"editor.formatOnSave": true,
|
|
"editor.detectIndentation": false
|
|
},
|
|
"python.formatting.provider": "black",
|
|
"python.formatting.blackPath": "pyink",
|
|
"files.watcherExclude": {
|
|
"**/.git/**": true
|
|
},
|
|
"files.exclude": {
|
|
"**/__pycache__": true,
|
|
"**/.pytest_cache": true,
|
|
"**/*.egg-info": true
|
|
}
|
|
}
|