changeset 52736:f06665fc5205

flake8: tell flake8 that our line limit is 80 Flake8 default for line lengthis 79. It results with my editor integration complaining more often than necessary.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Mon, 20 Jan 2025 12:30:08 +0100
parents 04a9d34395ed
children e5f97898122f
files pyproject.toml
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/pyproject.toml	Thu Dec 19 18:35:48 2024 -0500
+++ b/pyproject.toml	Mon Jan 20 12:30:08 2025 +0100
@@ -118,3 +118,7 @@
 
 [tool.setuptools_scm]
 version_file = "mercurial/__version__.py"
+
+
+[flake8]
+max-line-length = 80