best-doctor / flake8-variables-names

A flake8 extension that helps to make more readable variables names

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

flake8-variables-names

Build Status Maintainability Test Coverage PyPI version PyPI - Python Version

An extension for flake8 that helps to make more readable variables names.

We believe, that variable name should unmistakably shows, what it contains. Thats why we try not to use varnames with only one symbol or not to use too common names, such as result, value or info.

This extensions helps to detect such names. By default it works in non-strict mode. You can change it with --use-varnames-strict-mode parameter end extend variable names blacklist even more.

Installation

pip install flake8-variables-names

Example

Sample file:

# test.py

a = 1
foo = 2
result = a + foo

Usage:

$ flake8 test.py
test.py:1:1: VNE001 single letter variable names are not allowed
test.py:2:1: VNE002 variable name should be clarified

Error codes

Error code Description
VNE001 single letter variable names like 'XXX' are not allowed
VNE002 variable name 'XXX' should be clarified
VNE003 variable names that shadow builtins are not allowed

Contributing

We would love you to contribute to our project. It's simple:

  • Create an issue with bug you found or proposal you have. Wait for approve from maintainer.
  • Create a pull request. Make sure all checks are green.
  • Fix review comments if any.
  • Be awesome.

Here are useful tips:

About

A flake8 extension that helps to make more readable variables names

License:MIT License


Languages

Language:Python 97.2%Language:Makefile 2.5%Language:Ruby 0.3%