├── .eslintrc.json ├── .flake8 ├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md ├── actions │ ├── build-vsix │ │ └── action.yml │ └── lint │ │ └── action.yml ├── release.yml └── workflows │ ├── codeql-analysis.yml │ ├── issue-labels.yml │ ├── pr-check.yml │ ├── pr-labels.yml │ └── push-check.yml ├── .gitignore ├── .npmrc ├── .prettierrc.js ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── bundle.l10n.cs.json ├── bundle.l10n.de.json ├── bundle.l10n.es.json ├── bundle.l10n.fr.json ├── bundle.l10n.it.json ├── bundle.l10n.ja.json ├── bundle.l10n.ko.json ├── bundle.l10n.pl.json ├── bundle.l10n.pt-br.json ├── bundle.l10n.qps-ploc.json ├── bundle.l10n.ru.json ├── bundle.l10n.tr.json ├── bundle.l10n.zh-cn.json ├── bundle.l10n.zh-tw.json ├── bundled └── tool │ ├── __init__.py │ ├── _debug_server.py │ ├── lsp_jsonrpc.py │ ├── lsp_runner.py │ ├── lsp_server.py │ └── lsp_utils.py ├── icon.png ├── noxfile.py ├── package.json ├── package.nls.cs.json ├── package.nls.de.json ├── package.nls.es.json ├── package.nls.fr.json ├── package.nls.it.json ├── package.nls.ja.json ├── package.nls.json ├── package.nls.ko.json ├── package.nls.pl.json ├── package.nls.pt-br.json ├── package.nls.qps-ploc.json ├── package.nls.ru.json ├── package.nls.tr.json ├── package.nls.zh-cn.json ├── package.nls.zh-tw.json ├── packages.config ├── requirements.in ├── requirements.txt ├── runtime.txt ├── src ├── common │ ├── constants.ts │ ├── logging.ts │ ├── python.ts │ ├── server.ts │ ├── settings.ts │ ├── setup.ts │ ├── status.ts │ ├── utilities.ts │ └── vscodeapi.ts ├── extension.ts └── test │ └── python_tests │ ├── __init__.py │ ├── lsp_test_client │ ├── __init__.py │ ├── constants.py │ ├── defaults.py │ ├── session.py │ └── utils.py │ ├── requirements.in │ ├── requirements.txt │ ├── test_code_actions.py │ ├── test_data │ └── sample1 │ │ └── sample.py │ ├── test_linting.py │ └── test_path_specialization.py ├── telemetry.json ├── tsconfig.json ├── tsfmt.json └── webpack.config.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | ignore = W,BLK,E203,E402,E501 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/actions/build-vsix/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/.github/actions/build-vsix/action.yml -------------------------------------------------------------------------------- /.github/actions/lint/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/.github/actions/lint/action.yml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/issue-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/.github/workflows/issue-labels.yml -------------------------------------------------------------------------------- /.github/workflows/pr-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/.github/workflows/pr-check.yml -------------------------------------------------------------------------------- /.github/workflows/pr-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/.github/workflows/pr-labels.yml -------------------------------------------------------------------------------- /.github/workflows/push-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/.github/workflows/push-check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /bundle.l10n.cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/bundle.l10n.cs.json -------------------------------------------------------------------------------- /bundle.l10n.de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/bundle.l10n.de.json -------------------------------------------------------------------------------- /bundle.l10n.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/bundle.l10n.es.json -------------------------------------------------------------------------------- /bundle.l10n.fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/bundle.l10n.fr.json -------------------------------------------------------------------------------- /bundle.l10n.it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/bundle.l10n.it.json -------------------------------------------------------------------------------- /bundle.l10n.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/bundle.l10n.ja.json -------------------------------------------------------------------------------- /bundle.l10n.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/bundle.l10n.ko.json -------------------------------------------------------------------------------- /bundle.l10n.pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/bundle.l10n.pl.json -------------------------------------------------------------------------------- /bundle.l10n.pt-br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/bundle.l10n.pt-br.json -------------------------------------------------------------------------------- /bundle.l10n.qps-ploc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/bundle.l10n.qps-ploc.json -------------------------------------------------------------------------------- /bundle.l10n.ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/bundle.l10n.ru.json -------------------------------------------------------------------------------- /bundle.l10n.tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/bundle.l10n.tr.json -------------------------------------------------------------------------------- /bundle.l10n.zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/bundle.l10n.zh-cn.json -------------------------------------------------------------------------------- /bundle.l10n.zh-tw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/bundle.l10n.zh-tw.json -------------------------------------------------------------------------------- /bundled/tool/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/bundled/tool/__init__.py -------------------------------------------------------------------------------- /bundled/tool/_debug_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/bundled/tool/_debug_server.py -------------------------------------------------------------------------------- /bundled/tool/lsp_jsonrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/bundled/tool/lsp_jsonrpc.py -------------------------------------------------------------------------------- /bundled/tool/lsp_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/bundled/tool/lsp_runner.py -------------------------------------------------------------------------------- /bundled/tool/lsp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/bundled/tool/lsp_server.py -------------------------------------------------------------------------------- /bundled/tool/lsp_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/bundled/tool/lsp_utils.py -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/icon.png -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/noxfile.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/package.json -------------------------------------------------------------------------------- /package.nls.cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/package.nls.cs.json -------------------------------------------------------------------------------- /package.nls.de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/package.nls.de.json -------------------------------------------------------------------------------- /package.nls.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/package.nls.es.json -------------------------------------------------------------------------------- /package.nls.fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/package.nls.fr.json -------------------------------------------------------------------------------- /package.nls.it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/package.nls.it.json -------------------------------------------------------------------------------- /package.nls.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/package.nls.ja.json -------------------------------------------------------------------------------- /package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/package.nls.json -------------------------------------------------------------------------------- /package.nls.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/package.nls.ko.json -------------------------------------------------------------------------------- /package.nls.pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/package.nls.pl.json -------------------------------------------------------------------------------- /package.nls.pt-br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/package.nls.pt-br.json -------------------------------------------------------------------------------- /package.nls.qps-ploc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/package.nls.qps-ploc.json -------------------------------------------------------------------------------- /package.nls.ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/package.nls.ru.json -------------------------------------------------------------------------------- /package.nls.tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/package.nls.tr.json -------------------------------------------------------------------------------- /package.nls.zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/package.nls.zh-cn.json -------------------------------------------------------------------------------- /package.nls.zh-tw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/package.nls.zh-tw.json -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/packages.config -------------------------------------------------------------------------------- /requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/requirements.in -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9.13 -------------------------------------------------------------------------------- /src/common/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/src/common/constants.ts -------------------------------------------------------------------------------- /src/common/logging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/src/common/logging.ts -------------------------------------------------------------------------------- /src/common/python.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/src/common/python.ts -------------------------------------------------------------------------------- /src/common/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/src/common/server.ts -------------------------------------------------------------------------------- /src/common/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/src/common/settings.ts -------------------------------------------------------------------------------- /src/common/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/src/common/setup.ts -------------------------------------------------------------------------------- /src/common/status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/src/common/status.ts -------------------------------------------------------------------------------- /src/common/utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/src/common/utilities.ts -------------------------------------------------------------------------------- /src/common/vscodeapi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/src/common/vscodeapi.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/test/python_tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/src/test/python_tests/__init__.py -------------------------------------------------------------------------------- /src/test/python_tests/lsp_test_client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/src/test/python_tests/lsp_test_client/__init__.py -------------------------------------------------------------------------------- /src/test/python_tests/lsp_test_client/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/src/test/python_tests/lsp_test_client/constants.py -------------------------------------------------------------------------------- /src/test/python_tests/lsp_test_client/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/src/test/python_tests/lsp_test_client/defaults.py -------------------------------------------------------------------------------- /src/test/python_tests/lsp_test_client/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/src/test/python_tests/lsp_test_client/session.py -------------------------------------------------------------------------------- /src/test/python_tests/lsp_test_client/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/src/test/python_tests/lsp_test_client/utils.py -------------------------------------------------------------------------------- /src/test/python_tests/requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/src/test/python_tests/requirements.in -------------------------------------------------------------------------------- /src/test/python_tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/src/test/python_tests/requirements.txt -------------------------------------------------------------------------------- /src/test/python_tests/test_code_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/src/test/python_tests/test_code_actions.py -------------------------------------------------------------------------------- /src/test/python_tests/test_data/sample1/sample.py: -------------------------------------------------------------------------------- 1 | import sys 2 | 3 | print(x) 4 | -------------------------------------------------------------------------------- /src/test/python_tests/test_linting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/src/test/python_tests/test_linting.py -------------------------------------------------------------------------------- /src/test/python_tests/test_path_specialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/src/test/python_tests/test_path_specialization.py -------------------------------------------------------------------------------- /telemetry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/telemetry.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsfmt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/tsfmt.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-flake8/HEAD/webpack.config.js --------------------------------------------------------------------------------