{ "xml.symbols.enabled": false, "python.languageServer": "None", "python.linting.enabled": true, "python.linting.pylintEnabled": true, "python.linting.pylintArgs": ["--rcfile=.pylintrc"], "python.linting.flake8Enabled": true, "python.linting.flake8Args": ["--config=.flake8"], "python.formatting.provider": "black", "python.formatting.blackArgs": ["--config=pyproject.toml"], "editor.formatOnSave": true, "editor.codeActionsOnSave": { "source.organizeImports": "explicit" }, "python.sortImports.args": ["--settings-path=.isort.cfg"], "[python]": { "editor.formatOnSave": true, "editor.defaultFormatter": "ms-python.black-formatter", "editor.codeActionsOnSave": { "source.organizeImports": "explicit" } }, "[xml]": { "editor.formatOnSave": true, "editor.defaultFormatter": "esbenp.prettier-vscode" }, "[json]": { "editor.formatOnSave": true, "editor.defaultFormatter": "esbenp.prettier-vscode" }, "[yaml]": { "editor.formatOnSave": true, "editor.defaultFormatter": "esbenp.prettier-vscode" }, "files.trimTrailingWhitespace": true, "files.insertFinalNewline": true, "files.exclude": { "**/__pycache__": true, "**/*.pyc": true, "**/*.pyo": true, "**/.pytest_cache": true, "**/.tox": true, "**/.eggs": true, "**/*.egg-info": true }, "search.exclude": { "**/__pycache__": true, "**/*.pyc": true, "**/.pytest_cache": true, "**/.tox": true, "**/.eggs": true, "**/*.egg-info": true } }