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 703 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
  1. # See https://pre-commit.com for more information
  2. # See https://pre-commit.com/hooks.html for more hooks
  3. repos:
  4. - repo: https://github.com/pre-commit/pre-commit-hooks
  5. rev: v3.2.0
  6. hooks:
  7. - id: check-yaml
  8. - id: check-added-large-files
  9. - repo: https://github.com/psf/black
  10. rev: 20.8b1 # Replace by any tag/version: https://github.com/psf/black/tags
  11. hooks:
  12. - id: black
  13. language_version: python3 # Should be a command that runs python3.6+
  14. exclude: labels.py|metrics|generated|labeled-data
  15. - repo: https://github.com/timothycrosley/isort
  16. rev: 5.6.4
  17. hooks:
  18. - id: isort
  19. args: ["--profile", "black"]
  20. language_version: python3
Tip!

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

Comments

Loading...