Add type checking
This commit is contained in:
parent
56184e25c4
commit
c5400915de
3 changed files with 3 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -245,3 +245,4 @@ ENV/
|
|||
# End of https://www.gitignore.io/api/node,linux,python,jetbrains,archlinuxpackages
|
||||
|
||||
out/
|
||||
.mypy_cache
|
||||
|
|
|
@ -21,6 +21,7 @@ test:
|
|||
override:
|
||||
- npm test
|
||||
- flake8 md_pdf/ --ignore=E128,E501
|
||||
- mypy --ignore-missing-imports md_pdf
|
||||
- safety check
|
||||
- bandit -r md_pdf/
|
||||
- mdp --update-csl -vvv
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
bandit==1.4.0
|
||||
flake8==3.3.0
|
||||
freezegun==0.3.9
|
||||
mypy==0.511
|
||||
safety==0.5.1
|
||||
|
|
Reference in a new issue