Skip to main content

Flake8 plugin for a smart line length validation.

Project description

flake8-length

Flake8 plugin for a smart line length validation.

pycodestyle linter (used in Flake8 under the hood by default) already has E501 and W505 rules to validate the line length. flake8-length provides an alternative check that is smarter and more forgiving.

What is allowed:

  • Long string literals.
  • Long URLs in strings and comments.
  • When the last word in a text doesn't fit a bit.

Motivation

From linux code style:

Statements longer than 80 columns will be broken into sensible chunks, unless exceeding 80 columns significantly increases readability and does not hide information. <...> However, never break user-visible strings such as printk messages, because that breaks the ability to grep for them.

I see a lot of Python code that does some awful breaks to fit long text messages into the project's line limit just because. However, it creates a lot of difficulties:

  1. Difficult to grep.
  2. Easy to miss a space on the string breaks.
  3. It doesn't make code more readable at all, even decreases readability. In most cases, I don't care if the ending of an error message goes outside of my screen.

Some modern languages even don't have this limitation:

Go has no line length limit. Don't worry about overflowing a punched card.

However, it makes sense to keep some limit to guide developers and keep the alignment reasonable.

Uncle Bob analyzed line length in some popular Java project. The conclusion is it is usually about 45 on average, more than 97 is too much and exceptional.

Raymond Hettinger advises to keep it 90ish. The limit should be about 90 but with reasonable exceptions for when breaking the line would negatively affect the readability.

Kevlin Henney says even 80 is too generous. People read the code following one up-down flow, and breaking the flow with long lines makes the code harder to read.

If you ever had to break a text message to fit in the limit, you know why the plugin exists.

If you're about having as strict limits as possible, flake8-length is on your side. It's better to set 90 chars limit with a few reasonable exceptions rather than have 120 or more chars limit for everything.

Installation

Install:

python3 -m pip install --user flake8-length

And check if the plugin is detected by flake8:

flake8 --version

If it doesn't, flake8-length was installed in another python interpreter rather than flake8. You can find the right one:

head -1 $(which flake8)

Usage

  • If you're installed flake8-length and flake8 in the same environment, when you run flake8 it will run the plugin. Just give it a try.
  • pycodestyle has a few hard limits on lime length (E501 and W505), so these checks should be disabled to avoid conflicts with flake8-length.
  • The default soft limit is set using max-line-length option. It is 79 by default.

Configuration example (setup.cfg):

[flake8]
ignore =
    E501,
    W505
max-line-length = 90

What the limit you should use? I'd say, as small as possible. Try to start with the default one (79) and if you feel it's not enough, extend it to 90. More is too generous.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

flake8-length-0.1.0.tar.gz (6.8 kB view details)

Uploaded Source

Built Distribution

flake8_length-0.1.0-py3-none-any.whl (6.7 kB view details)

Uploaded Python 3

File details

Details for the file flake8-length-0.1.0.tar.gz.

File metadata

  • Download URL: flake8-length-0.1.0.tar.gz
  • Upload date:
  • Size: 6.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.25.1

File hashes

Hashes for flake8-length-0.1.0.tar.gz
Algorithm Hash digest
SHA256 b82876879b4b5b7d092c26e5b3451a041070a877cad618a390de9e3c05f93add
MD5 5d9f68611831906ba385149be03cc424
BLAKE2b-256 db84e69282c9404db275f0cdc0e02a30f6f4045ab505ba15c8a69c6c64a3357c

See more details on using hashes here.

File details

Details for the file flake8_length-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for flake8_length-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 63a16cbca73f9b71fa98e827ca6a7cd814a38763f878fbf3c330e4c57c61588f
MD5 87d9881a7b32769d3cefb185c70ab5ab
BLAKE2b-256 b37b90bba4470e328fb6c0f78187781a016b817e9b57f75c6d6847e54f338ac5

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page