GitXplorerGitXplorer
i

pylint-and-format

public
4 stars
2 forks
0 issues

Commits

List of commits on branch master.
Verified
07d8728ec64668514d065485f4788e350ff0be11

Update README.md

iitsvinayak committed 5 years ago
Verified
061b4e71a543556ecdd8fe5ccc5a55b76643a198

Add files via upload

iitsvinayak committed 5 years ago
Unverified
0a73b8e4fe81fd0ff59de0697a0b370ad989c462

icon

iitsvinayak committed 5 years ago
Unverified
380351ca4ca4edf410ea429471d0962a157d8cdc

icon

iitsvinayak committed 5 years ago
Unverified
b2e091e62cb6db9372e9c3a6a02c973dc4ef462c

improve

iitsvinayak committed 5 years ago
Unverified
7af916476efb4edf9466ef2a3b8a49f1b82358ae

Merge branch 'master' of https://github.com/itsvinayak/pylint-and-format

iitsvinayak committed 5 years ago

README

The README file for this repository.

pylint-and-format

Perform Style Checking on your Python 3 using flake8 and formate code using black

Flake8 is a Python library that wraps PyFlakes, pycodestyle and Ned Batchelder's McCabe script. It is a great toolkit for checking your codebase against coding style (PEP8), programming errors (like “library imported but unused” and “Undefined name”) and checking cyclomatic complexity.

Black is the uncompromising Python code formatter. By using it, you agree to cede control over minutiae of hand-formatting. In return, Black gives you speed, determinism, and freedom from pycodestyle nagging about formatting. You will save time and mental energy for more important matters.