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 924 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
  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.3.0
  6. hooks:
  7. - id: check-added-large-files
  8. name: 🐘 Check for added large files
  9. - id: check-toml
  10. name: ✔️ Check TOML
  11. - id: check-yaml
  12. name: ✔️ Check YAML
  13. args:
  14. - --unsafe
  15. - id: end-of-file-fixer
  16. name: 🪚 Fix end of files
  17. - id: trailing-whitespace
  18. name: ✂️ Trim trailing whitespaces
  19. # - repo: https://github.com/charliermarsh/ruff-pre-commit
  20. # rev: v0.0.277
  21. # hooks:
  22. # - id: ruff
  23. # name: ⚡️ Formatting code with Ruff
  24. # args:
  25. # - --fix
  26. ci:
  27. autofix_commit_msg: 🎨 [pre-commit.ci] Auto format from pre-commit.com hooks
  28. autoupdate_commit_msg: ⬆ [pre-commit.ci] pre-commit autoupdate
Tip!

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

Comments

Loading...