DEV Community

Discussion on: 10 Great Programming Projects to Improve Your Resume and Learn to Program

Collapse
 
sobolevn profile image
Nikita Sobolev

When doing these projects, don't forget about your coding style. I recommend to use wemake-python-styleguide to catch all possible errors one can accidentally make.

It is the strictest Python linter out there. And trust me, it will help you to learn a lot of things as a beginner. Why? Because it encourages you to write high-quality code. And even forces sometimes.

Combine it with nice docs and friendly community, and you are all set for the success!

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?