Flake8Rules icon indicating copy to clipboard operation
Flake8Rules copied to clipboard

Descriptions and examples for the rules in Flake8 (pyflakes, pycodestyle, and mccabe).

Results 22 Flake8Rules issues
Sort by recently updated
recently updated
newest added

Bumps [tzinfo](https://github.com/tzinfo/tzinfo) from 1.2.9 to 1.2.10. Release notes Sourced from tzinfo's releases. v1.2.10 Fixed a relative path traversal bug that could cause arbitrary files to be loaded with require when...

dependencies

Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.11.1 to 1.13.6. Release notes Sourced from nokogiri's releases. 1.13.6 / 2022-05-08 Security [CRuby] Address CVE-2022-29181, improper handling of unexpected data types, related to untrusted inputs to...

dependencies

[E501](https://www.flake8rules.com/rules/E501.html) title displays an HTML entity: ``` Line too long (82 > 79 characters) (E501) ``` Is there any reason for that symbol to be an HTML entity in the...

The following fails with E129: ```python if (something > 0 and another != 3 and this_one != 0): do_thing() ``` If you follow the documentation that indentate the second line,...

The best practice of E129: ``` if (row < 0 or module_count

Bumps [addressable](https://github.com/sporkmonger/addressable) from 2.7.0 to 2.8.0. Changelog Sourced from addressable's changelog. Addressable 2.8.0 fixes ReDoS vulnerability in Addressable::Template#match no longer replaces + with spaces in queries for non-http(s) schemes fixed...

dependencies

Since comments might not contain the type this could throw an exception.

Bumps [rexml](https://github.com/ruby/rexml) from 3.2.4 to 3.2.5. Changelog Sourced from rexml's changelog. 3.2.5 - 2021-04-05 {#version-3-2-5} Improvements Add more validations to XPath parser. require &quot;rexml/document&quot; by default. [GitHub#36][Patch by Koichi ITO]...

dependencies

Is there an easy way to incorporate rules from other flake8 plugins? Like Bandit, isort, etc? By "an easy way" I mean importing them into flake8rules even if formatting of...