From 0676dcea08f9c5735d566918af354fc3c9200ccf Mon Sep 17 00:00:00 2001 From: Jake Beal Date: Thu, 11 Apr 2024 08:23:29 -0500 Subject: [PATCH] Relax line length acceptability to match pySBOL3 for style checking --- setup.cfg | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/setup.cfg b/setup.cfg index 8ae1d61..2de0c32 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,6 @@ [pycodestyle] -# SBOL code should ideally not exceed 79 characters per line. -# However, the style checker will not penalize small infractions. -# Therefore, any line up to 89 characters is acceptable. -max-line-length = 89 +# SBOL code should fit on a 120 character wide display. Yes, it's an +# arbitrary limit. It takes into account modern displays, while not +# allowing developers to wildly exceed reasonable limits. Not everyone +# can afford a monstrous wall-sized display. +max-line-length = 119