| { |
| "black-formatter.path": [ |
| "${workspaceFolder}/scripts/black" |
| ], |
| "pylint.path": [ |
| "${workspaceFolder}/scripts/pylint" |
| ], |
| "pylint.severity": { |
| "refactor": "Warning" |
| }, |
| "python.formatting.blackPath": "${workspaceFolder}/scripts/black", |
| "python.formatting.provider": "black", |
| "python.testing.cwd": "${workspaceFolder}", |
| "python.testing.nosetestsEnabled": false, |
| "python.testing.pytestEnabled": false, |
| "python.testing.unittestArgs": [ |
| "-v", |
| "-s", |
| ".", |
| "-t", |
| "..", |
| "-p", |
| "*unittest.py" |
| ], |
| "python.testing.unittestEnabled": true |
| } |