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 609 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
  1. repos:
  2. - repo: https://github.com/pre-commit/pre-commit-hooks
  3. rev: v2.4.0
  4. hooks:
  5. - id: trailing-whitespace
  6. - id: end-of-file-fixer
  7. - repo: https://github.com/psf/black
  8. rev: 21.5b0
  9. hooks:
  10. - id: black
  11. - repo: https://github.com/myint/docformatter
  12. rev: v1.4
  13. hooks:
  14. - id: docformatter
  15. - repo: local
  16. hooks:
  17. - id: pylint
  18. name: pylint
  19. description: "pylint"
  20. entry: python
  21. language: system
  22. require_serial: true
  23. types: [python]
  24. pass_filenames: true
  25. args: [-m, pylint, --rcfile, .pylintrc]
Tip!

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

Comments

Loading...