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 627 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
  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: v4.4.0
  6. hooks:
  7. - id: trailing-whitespace
  8. - id: end-of-file-fixer
  9. - id: check-merge-conflict
  10. - id: check-yaml
  11. - id: check-added-large-files
  12. args: ['--maxkb=1000']
  13. exclude: "notebooks"
  14. - id: check-yaml
  15. exclude: "mkdocs.yml"
  16. - repo: local
  17. hooks:
  18. - id: clean
  19. name: clean
  20. entry: make
  21. args: ["clean"]
  22. language: system
  23. pass_filenames: false
Tip!

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

Comments

Loading...