Giter Site home page Giter Site logo

flake8-putty's Introduction

Flake8 Putty

Build Status

Coverage Status

Code Quality

Pypi Entry

image

Flake8 Putty allows more control over errors reported by flake8, without adding noqa for every erroneous or undesirable error detected.

See https://gitlab.com/pycqa/flake8/issues/89 for some of the motivation for this extension.

If you only want better noqa support, flake8-respect-noqa is a simpler extension which works only when multiprocessing is disabled.

flake8-putty requires flake8 2. If you are looking for an extension compatible with flake8 3 that supports a subset of flake8-putty, see flake8-per-file-ignores.

Disabling erroneous or undesirable errors by adding noqa in the code may be undesirable for a number of reasons, including:

  • the 'error' appears frequently
  • the module is strictly in maintenance mode only
  • it causes a line to break the line length rule
  • the error should be ignored on only some versions or platforms

Installation

Simply:

$ pip install flake8-putty

Check that flake8 finds it:

$ flake8 --version

2.4.1 (pep8: 1.5.7, flake8-putty: 0.3.2, mccabe: 0.3.1, pyflakes: 0.8.1) CPython 2.7.6 on Linux

Usage

flake8-putty is not activated unless putty-auto-ignore, putty-ignore or putty-select appear in the configuration file or command line options.

Auto ignore detects comments on each line like .. # flake8: disable=xxxx.

putty-ignore and putty-select both support multiline values, and each line is a rule which should have the format:

<selectors> : <modifier><codes>

The codes are flake8 codes to use when the rule is matched. The only modifier is + which appends the codes to the list of codes from other rules.

Selectors may contain one or more of: - file patterns - line regexes - flake8 codes

When multiple file pattern selectors are used, only one of the file patterns needs to match the filename. Likewise only one of many regex and only one of many codes needs to be matched.

However when different types of selectors are combined in one rule, each type of selector must be matched.

e.g. when two filenames and two regex are used, at least one filename and one regex must match before the rule is activated.

All matching rules are processed.

Examples

Disable only D102 on foo.py:

putty-ignore =
  foo.py : D102

Disable D205, D400 and D401 for __init__ methods:

putty-ignore =
  /__init__/ : +D205,D400,D401

Disable T001 only when it is explicitly mentioned:

putty-ignore =
  /# !qa:.*T001/ : +T001

Disable any code that is explicitly mentioned:

putty-ignore =
  /# !qa: *(?P<codes>[A-Z0-9, ]*)/ : +(?P<codes>)

Disable any code that occurs after # flake8: disable=:

putty-auto-ignore = True

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.