Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

Makefile 378 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  1. # Makefile
  2. SHELL = /bin/bash
  3. # Styling
  4. .PHONY: style
  5. style:
  6. black .
  7. flake8
  8. python3 -m isort .
  9. pyupgrade
  10. # Cleaning
  11. .PHONY: clean
  12. clean: style
  13. find . -type f -name "*.DS_Store" -ls -delete
  14. find . | grep -E "(__pycache__|\.pyc|\.pyo)" | xargs rm -rf
  15. find . | grep -E ".pytest_cache" | xargs rm -rf
  16. find . | grep -E ".ipynb_checkpoints" | xargs rm -rf
  17. rm -rf .coverage*
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...