From 8b4f0c13b2a45417e58eb35eafc3e0f9b7ff4d24 Mon Sep 17 00:00:00 2001 From: Andrew Hamilton Date: Mon, 6 Dec 2021 22:07:18 +1000 Subject: [PATCH] tools: pycodestyle: Increase max line length to 100. --- eris/eris/tools.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eris/eris/tools.toml b/eris/eris/tools.toml index 480b92a..eaff776 100644 --- a/eris/eris/tools.toml +++ b/eris/eris/tools.toml @@ -59,7 +59,7 @@ tools_for_extensions = [ [pycodestyle] dependencies = ["python3-pycodestyle"] url = "http://pycodestyle.pycqa.org/en/latest/" - command = "python3.9 -m pycodestyle" + command = "python3.9 -m pycodestyle --max-line-length=100" [pydocstyle] dependencies = ["python3-pydocstyle"]