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 733 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
30
31
32
  1. repos:
  2. - repo: https://github.com/pre-commit/pre-commit-hooks
  3. rev: v4.0.1
  4. hooks:
  5. - id: check-docstring-first
  6. - id: check-toml
  7. - id: check-yaml
  8. exclude: packaging/.*
  9. args:
  10. - --allow-multiple-documents
  11. - id: mixed-line-ending
  12. args: [--fix=lf]
  13. - id: end-of-file-fixer
  14. - repo: https://github.com/omnilib/ufmt
  15. rev: v1.3.3
  16. hooks:
  17. - id: ufmt
  18. additional_dependencies:
  19. - black == 22.3.0
  20. - usort == 1.0.2
  21. - repo: https://github.com/PyCQA/flake8
  22. rev: 5.0.4
  23. hooks:
  24. - id: flake8
  25. args: [--config=setup.cfg]
  26. - repo: https://github.com/PyCQA/pydocstyle
  27. rev: 6.1.1
  28. hooks:
  29. - id: pydocstyle
Tip!

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

Comments

Loading...