Skip to content

Commit

Permalink
ignore logs
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelArbel committed Dec 7, 2023
1 parent df7b0e2 commit 9b3c66c
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ __pycache__/
# C extensions
*.so
*.DS_Store

*logs/


# Distribution / packaging
Expand Down
13 changes: 13 additions & 0 deletions local_checks.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/bash



# Linting

isort mlxp
docformatter --recursive --in-place --wrap-summaries 88 --wrap-descriptions 88 mlxp
black mlxp --line-length=110

flake8 mlxp --count --select=E9,F63,F7,F82 --show-source --statistics
flake8 mlxp --count --max-complexity=10 --max-line-length=110 --statistics
find mlxp -type f -name "*.py" | xargs pylint
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["setuptools>=52.0.0", "wheel"]
build-backend = "setuptools.build_meta"

0 comments on commit 9b3c66c

Please sign in to comment.