Update development instructions

We have flake8 and mypy ini files now, so the args aren't necessary.
This commit is contained in:
Jennifer Taylor 2022-05-01 12:17:08 -04:00 committed by GitHub
parent 4a84b1a793
commit e27d9de4be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -66,13 +66,13 @@ for a specific command's help.
The tools here are fully typed, and should be kept that way. To verify type hints, run the following:
```
mypy --strict .
mypy .
```
The tools are also lint clean (save for line length lints which are useless drivel). To verify lint, run the following:
```
flake8 --ignore E501 .
flake8 .
```
The tools also have their own unit tests. To verify tests, run the following: