From 86f452ddd1babe7f7f1026b219be9c8ce2dda509 Mon Sep 17 00:00:00 2001 From: justin-f-perez Date: Tue, 19 Mar 2024 12:14:26 -0500 Subject: [PATCH] Remove .config/flake8 reference in README.md Flake8 no longer supports `~/.config/flake8` as of version 4.0 https://flake8.pycqa.org/en/latest/release-notes/4.0.0.html#backwards-incompatible-changes --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 51ec4f7e..e0e6b224 100644 --- a/README.md +++ b/README.md @@ -101,7 +101,7 @@ Like all language servers, configuration can be passed from the client that talk `python-lsp-server` depends on other tools, like flake8 and pycodestyle. These tools can be configured via settings passed from the client (as above), or alternatively from other configuration sources. The following sources are available: - `pycodestyle`: discovered in `~/.config/pycodestyle`, `setup.cfg`, `tox.ini` and `pycodestyle.cfg`. -- `flake8`: discovered in `~/.config/flake8`, `.flake8`, `setup.cfg` and `tox.ini` +- `flake8`: discovered in `.flake8`, `setup.cfg` and `tox.ini` The default configuration sources are `pycodestyle` and `pyflakes`. If you would like to use `flake8`, you will need to: