Metadata-Version: 2.1
Name: flake8-colors
Version: 0.1.8
Summary: Error highlight plugin for Flake8.
Home-page: https://github.com/and3rson/flake8-colors
Author: Andrew Dunai
Author-email: andrew@dun.ai
License: MIT
Platform: UNKNOWN
Classifier: Framework :: Flake8
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Quality Assurance
Description-Content-Type: text/markdown
Requires-Dist: flake8 (>3.0.0)

# flake8-colors
ANSI colors highlight for Flake8

## Installation

1. Install plugin:

    ```
    pip install flake8-colors
    ```

2. Use the following example format in your `.flake8` file:

    ```
    format = ${cyan}%(path)s${reset}:${yellow_bold}%(row)d${reset}:${green_bold}%(col)d${reset}: ${red_bold}%(code)s${reset} %(text)s
    ```

3. Enjoy!

  ![Example image](https://habrastorage.org/files/0a7/cf5/47c/0a7cf547cd03457385c23691a4f29869.png)

## Usage

There are three forms of tags:

  - ${COLOR}
  - ${COLOR_MODIFIER}
  - ${TAG}

Colors:

  - black
  - red
  - green
  - yellow
  - blue
  - purple
  - cyan
  - white

Modifiers:

  - fg
  - bold
  - underline
  - bg

Tags:

  - bold
  - underline
  - reset

# Credits

Inspired by [flake8-format-ansi](https://github.com/jayvdb/flake8-format-ansi/)

# Contribution

Just do whatever you want to do.


