Skip to content

Commit

Permalink
adds makefile to project
Browse files Browse the repository at this point in the history
  • Loading branch information
GabrielBarberini committed Sep 15, 2024
1 parent 57d0a69 commit 470eb1e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
black:
black ./lib

lint: flake8 pylint

flake8:
flake8 --ignore E501,E402,F401,W503 ./lib

pylint:
pylint --extension-pkg-whitelist='pydantic' ./lib/*

0 comments on commit 470eb1e

Please sign in to comment.