Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 --diff

ruff format --diff
```

### Format

```
ruff check --fix
ruff format
```