DEV Community

Discussion on: Developer Tools & Frameworks for a Python Developer

Collapse
 
sobolevn profile image
Nikita Sobolev • Edited

Don't forget about wemake-python-styleguide: github.com/wemake-services/wemake-...

It is the strictest Python linter out there!

GitHub logo wemake-services / wemake-python-styleguide

The strictest and most opinionated python linter ever!

wemake-python-styleguide

wemake.services Supporters Build Status Coverage Status Github Action Python Version wemake-python-styleguide


Welcome to the strictest and most opinionated python linter ever.

wemake-python-styleguide logo

wemake-python-styleguide is actually a flake8 plugin with some other plugins as dependencies.

Quickstart

pip install wemake-python-styleguide

You will also need to create a setup.cfg file with the configuration.

We highly recommend to also use:

  • flakehell for easy integration into a legacy codebase
  • nitpick for sharing and validating configuration across multiple projects

Running

flake8 your_module.py

This app is still just good old flake8 And it won't change your existing workflow.

invocation resuts

See "Usage" section in the docs for examples and integrations.

We also support Github Actions as first class-citizens Try it out!

What we are about

The ultimate goal of this project is to make all people write exactly the same python code.

black mypy pylint flake8 wemake-python-styleguide
Formats code?
Finds style issues?
Finds bugs?
Collapse
 
iceorfiresite profile image
Ice or Fire

I'm going to give this a try! Thanks for sharing.

Collapse
 
steelwolf180 profile image
Max Ong Zong Bao

This looks really nice.