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 676 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
  1. repos:
  2. - repo: https://github.com/timothycrosley/isort
  3. rev: 5.10.1
  4. hooks:
  5. - id: isort
  6. args: [--profile, black]
  7. - repo: https://github.com/psf/black
  8. rev: 22.10.0
  9. hooks:
  10. - id: black
  11. - repo: https://github.com/pre-commit/mirrors-mypy
  12. rev: v0.991
  13. hooks:
  14. - id: mypy
  15. args: [--ignore-missing-imports, --pretty, --show-error-codes]
  16. - repo: https://github.com/pre-commit/pre-commit-hooks
  17. rev: v4.3.0
  18. hooks:
  19. - id: check-ast
  20. - id: check-yaml
  21. args: [--unsafe, --allow-multiple-documents]
  22. - id: end-of-file-fixer
  23. - id: trailing-whitespace
  24. args: [--markdown-linebreak-ext=md]
Tip!

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

Comments

Loading...