Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wencakisa/linters-python-meetup
Embrace the linters demo code for Python Meetup
https://github.com/wencakisa/linters-python-meetup
Last synced: about 11 hours ago
JSON representation
Embrace the linters demo code for Python Meetup
- Host: GitHub
- URL: https://github.com/wencakisa/linters-python-meetup
- Owner: wencakisa
- License: mit
- Created: 2024-06-22T08:54:19.000Z (5 months ago)
- Default Branch: master
- Last Pushed: 2024-06-25T14:16:41.000Z (4 months ago)
- Last Synced: 2024-06-25T15:54:11.184Z (4 months ago)
- Language: Python
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# `flake8`
### Check formatting
```
flake8 .
```# `isort`
### Check formatting
```
isort . --check -diff
```### Format
```
isort .
```# `black`
### Check formatting
```
black . --check --diff
```### Format
```
black .
```# `ruff`
### Check formatting
```
ruff check
ruff check --diffruff format --diff
```### Format
```
ruff check --fix
ruff format
```