diff options
author | Eric N. Vander Weele <ericvw@gmail.com> | 2019-05-18 09:42:19 -0400 |
---|---|---|
committer | Eric N. Vander Weele <ericvw@gmail.com> | 2019-05-19 09:51:26 -0400 |
commit | 57736cdcccf46e0d6252b556e9a2b2a56a634754 (patch) | |
tree | 8dbe9f14c04770972f167bdc36aec14c5dc85f8b /doc | |
parent | 57b9d8bc0ed71639a666d81f916515a1439d6aeb (diff) | |
download | ale-57736cdcccf46e0d6252b556e9a2b2a56a634754.zip |
Change Python project root dir detection for flake8 configuration
The official configuration files for `flake8` are `.flake8`, `tox.ini`,
and `setup.cfg`.
After investigation, it is safe to remove `flake8.cfg` as it appears to
only exist as a typo in other tooling documentation (e.g.,
`python-language-server`).
Even though no linters automatically read `.flake8rc`, it is kept in
case projects may be using it for detecting the projects root directory.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ale-python.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ale-python.txt b/doc/ale-python.txt index 7dd3b65d..43cdf648 100644 --- a/doc/ale-python.txt +++ b/doc/ale-python.txt @@ -29,7 +29,7 @@ ALE will look for configuration files with the following filenames. > tox.ini mypy.ini pycodestyle.cfg - flake8.cfg + .flake8 .flake8rc pylama.ini pylintrc |