summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2023-03-02 21:19:56 +0100
committerGitHub <noreply@github.com>2023-03-02 21:19:56 +0100
commit4de654512e8c1219046f2f49664b6c9f66946e84 (patch)
tree6b7b4dd14e48198829080f98893925481c2a7011 /doc
parentb5aab35a6f20efad94ae8da07392fad6d1c28aad (diff)
downloadpylint-git-4de654512e8c1219046f2f49664b6c9f66946e84.tar.gz
[pre-commit] Transition from flake8/autoflake to ruff (#8372)
ruff is faster and support pyproject.toml. flake8-typing-import is not implemented but it checks for things in python version < 3.7.2 that we do not support.
Diffstat (limited to 'doc')
-rw-r--r--doc/data/ruff.toml (renamed from doc/data/.flake8)7
1 files changed, 3 insertions, 4 deletions
diff --git a/doc/data/.flake8 b/doc/data/ruff.toml
index 676bedc0d..da929be3b 100644
--- a/doc/data/.flake8
+++ b/doc/data/ruff.toml
@@ -1,6 +1,5 @@
-[flake8]
-select =
- E501,
+ignore = []
# Reading ease is drastically reduced on read the doc after 103 chars
# (Because of horizontal scrolling)
-max-line-length=103
+line-length = 103
+select = ["E501"]