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 1.1 KB

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
33
34
35
36
37
38
39
40
41
42
  1. repos:
  2. - repo: https://github.com/nbQA-dev/nbQA
  3. rev: 1.5.3
  4. hooks:
  5. - id: nbqa-black
  6. - id: nbqa-pyupgrade
  7. - id: nbqa-isort
  8. - repo: https://github.com/timothycrosley/isort
  9. rev: 5.10.1
  10. hooks:
  11. - id: isort
  12. args: [ --profile, black ]
  13. - repo: https://github.com/psf/black
  14. rev: 22.10.0
  15. hooks:
  16. - id: black
  17. - repo: https://github.com/pre-commit/mirrors-mypy
  18. rev: v0.991
  19. hooks:
  20. - id: mypy
  21. args: [ --ignore-missing-imports, --pretty, --show-error-codes ]
  22. - repo: https://github.com/asottile/pyupgrade
  23. rev: v3.3.0
  24. hooks:
  25. - id: pyupgrade
  26. - repo: https://github.com/pre-commit/pre-commit-hooks
  27. rev: v4.3.0
  28. hooks:
  29. - id: check-ast
  30. - id: check-case-conflict
  31. - id: check-docstring-first
  32. - id: check-json
  33. - id: check-merge-conflict
  34. - id: debug-statements
  35. - id: check-symlinks
  36. - id: check-yaml
  37. args: [ --unsafe, --allow-multiple-documents ]
  38. - id: detect-private-key
  39. - id: end-of-file-fixer
  40. - id: requirements-txt-fixer
  41. - id: trailing-whitespace
  42. args: [ --markdown-linebreak-ext=md ]
Tip!

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

Comments

Loading...