Skip to main content

Flake8 json formatter that produces output pycharm can recognize

Project description

This is a plugin for Flake8 that will emulate pylint json output.

Installation

pip install git+https://gitlab.com/ramast/flake8-for-pycharm.git#egg=flake8-for-pycharm

Make sure you have flake8 installed in the same enviroment.

pip install flake8

To validate installation run flake8_pycharm.py –help-msg=E1101. Output should look like that:

:no-member (E1101): *%s %r has no %r member%s*
Used when a variable is accessed for an unexistent member. This message
belongs to the typecheck checker.

Usage

  1. Locate the file flake8_pycharm.py in your python environment (in linux use command which flake8_pycharm.py)

  2. In Pycharm go to File -> Settings -> Pylint (If you can’t find it, go to Settings -> Plugins and install pylint plugin)

  3. In “Path to Pylint executable”, provide path to “flake8_pycharm.py” script

  4. [ Optional ] In path to pylintrc, provide path to your flake8 configuration file

  5. Do not put anything in the “Arguments” field or script won’t work.

  6. This is it, youa re basically done.

How does it work?

Initially Pycharm call pylint with the following arguments

pylint --help-msg=E1101

Once this command has succeeded, it assumes that pylint is installed and starts using it with command like that.

pylint --rcfile=pylintrc -f json my_file.py

The flake8_pycharm.py script understand those pylint arguments, query flake8 accordingly and return result in same format that pylint produces.

Troubleshooting

If you did everything correctly but pycharm kept complaining about pylint being not installed, you might have to install it anyway. It’s a bug reported by a colleague but I wasn’t able to reproduce it locallay.

If you received errors from pycharm, you can try to run the command manually to see if it’s producing errors.

flake8_pycharm.py --rcfile=<your flake8 configuration> -f json my_file.py

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-for-pycharm-0.3.1.tar.gz (4.8 kB view hashes)

Uploaded Source

Built Distribution

flake8_for_pycharm-0.3.1-py2.py3-none-any.whl (5.6 kB view hashes)

Uploaded Python 2 Python 3

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