Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/itsvinayak/pylint-and-format
Perform Style Checking on your Python 3 using flake8 and formate code using black
https://github.com/itsvinayak/pylint-and-format
code flake8 github githubhackathon pycodestyle pylint
Last synced: 26 days ago
JSON representation
Perform Style Checking on your Python 3 using flake8 and formate code using black
- Host: GitHub
- URL: https://github.com/itsvinayak/pylint-and-format
- Owner: itsvinayak
- License: mit
- Created: 2020-03-25T05:53:36.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-04-17T19:03:21.000Z (over 4 years ago)
- Last Synced: 2024-05-02T06:06:53.138Z (6 months ago)
- Topics: code, flake8, github, githubhackathon, pycodestyle, pylint
- Language: Dockerfile
- Size: 128 KB
- Stars: 4
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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.