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

.pre-commit-config.yaml 568 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
20
21
22
23
24
25
26
27
28
29
  1. repos:
  2. - repo: https://github.com/ambv/black
  3. rev: 22.1.0
  4. hooks:
  5. - id: black
  6. - repo: https://gitlab.com/pycqa/flake8
  7. rev: 3.9.2
  8. hooks:
  9. - id: flake8
  10. - repo: https://github.com/timothycrosley/isort
  11. rev: 5.10.1
  12. hooks:
  13. - id: isort
  14. - repo: https://github.com/iterative/dvc
  15. rev: 2.9.5
  16. hooks:
  17. - id: dvc-pre-commit
  18. language_version: python3
  19. stages:
  20. - commit
  21. - id: dvc-pre-push
  22. language_version: python3
  23. stages:
  24. - push
  25. - id: dvc-post-checkout
  26. language_version: python3
  27. stages:
  28. - post-checkout
  29. always_run: true
Tip!

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

Comments

Loading...