{
"python.pythonPath": "D:/Python38/python.exe",
"jupyter.jupyterServerType": "local",
"jupyter.notebookFileRoot": "D:/JupyterProjects",
"python.dataScience.notebookFile": "*.ipynb",
"python.dataScience.jupyterServerURI": "http://localhost:8888/",
"workbench.startupEditor": "newUntitledFile",
"workbench.colorTheme": "Default Dark+",
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"editor.formatOnSave": true,
"editor.suggestSelection": "first",
"vsintellicode.modifySettingsJson": true,
"[python]": {
"editor.defaultFormatter": "ms-python.python"
},
"python.analysis.diagnosticSeverityOverrides": {
"reportMissingImports": "none"
},
"python.autoComplete.addBrackets": true,
"python.autoComplete.extraPaths": [
"D:/Python38/Lib",
"D:/Python38/Lib/site-packages",
"D:/Python38/DLLs",
"D:/Python38/Lib/lib-tk",
"D:/Python38/Lib/lib-dynload"
],
"python.autoComplete.preloadModules": [
"numpy",
"pandas",
"matplotlib",
"scipy",
"statsmodels",
"sklearn"
],
"python.linting.enabled": true,
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.linting.flake8Args": [
"--max-line-length=248"
],
"python.linting.pycodestyleEnabled": false,
"python.linting.pydocstyleEnabled": false,
"python.linting.mypyEnabled": true,
"python.formatting.provider": "yapf",
"python.formatting.yapfArgs": [
"--style",
"{based_on_style: google, column_limit: 248}"
],
"python.linting.pylintUseMinimalCheckers": true,
"python.linting.enabled": true,
"python.linting.flake8Enabled": true,
"python.linting.pylintEnabled": false,
"python.linting.mypyEnabled": true,
"python.linting.pylintPath": "D:/Python38/Scripts/pylint.exe",
"python.linting.flake8Path": "D:/Python38/Scripts/flake8.exe",
"python.linting.mypyPath": "D:/Python38/Scripts/mypy.exe",
"python.linting.pylintArgs": [
"--load-plugins",
"pylint_django",
"--errors-only"
],
"python.dataScience.jupyterServerURI": "http://localhost:8888/",
"python.dataScience.notebookFile": "*.ipynb",
"python.dataScience.changeDirOnEnte
评论已关闭