Skip to content

Commit

Permalink
README
Browse files Browse the repository at this point in the history
  • Loading branch information
aegilops committed Oct 16, 2023
1 parent 5e928da commit 6cac776
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ This Action and Python script lets you run one of several Python linters and typ
- [Pytype](https://github.com/google/pytype/) - for Python 3.10 and below
- [Pyright](https://github.com/microsoft/pyright)
- [Fixit 2](https://fixit.readthedocs.io/en/stable/) - for Python 3.8 and above
- [Pyre](https://pyre-check.org/)

## Requirements

Expand All @@ -37,7 +38,7 @@ Then run the linter:
python3 ./python_lint.py <linter> [<linter> ...] [<options>]
```

The linter/type checker can be one or more of `flake8`, `pylint`, `ruff`, `mypy`, `pytype`, `pyright`, `fixit`.
The linter/type checker can be one or more of `flake8`, `pylint`, `ruff`, `mypy`, `pytype`, `pyright`, `fixit`, `pyre`.

### Action

Expand Down Expand Up @@ -65,7 +66,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
linter: [flake8, pylint, ruff, mypy, pytype, pyright, fixit]
linter: [flake8, pylint, ruff, mypy, pytype, pyright, fixit, pyre]
steps:
- use: advanced-security/python-lint-code-scanning-action@v1
with:
Expand Down Expand Up @@ -113,7 +114,6 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- run: python3 -mpip install flake8-bugbear
- use: advanced-security/python-lint-code-scanning-action@v1
with:
linter: ruff
Expand Down

0 comments on commit 6cac776

Please sign in to comment.