Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

setup.cfg 905 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
  1. [tool:pytest]
  2. norecursedirs =
  3. .git
  4. dist
  5. build
  6. addopts =
  7. --strict
  8. --doctest-modules
  9. --durations=0
  10. [coverage:report]
  11. exclude_lines =
  12. pragma: no-cover
  13. pass
  14. [flake8]
  15. max-line-length = 120
  16. exclude = .tox,*.egg,build,temp
  17. select = E,W,F
  18. doctests = True
  19. verbose = 2
  20. # https://pep8.readthedocs.io/en/latest/intro.html#error-codes
  21. format = pylint
  22. # see: https://www.flake8rules.com/
  23. ignore =
  24. E731 # Do not assign a lambda expression, use a def
  25. W504 # Line break occurred after a binary operator
  26. F401 # Module imported but unused
  27. F841 # Local variable name is assigned to but never used
  28. W605 # Invalid escape sequence 'x'
  29. # setup.cfg or tox.ini
  30. [check-manifest]
  31. ignore =
  32. *.yml
  33. .github
  34. .github/*
  35. [metadata]
  36. license_file = LICENSE
  37. description-file = README.md
  38. # long_description = file:README.md
  39. # long_description_content_type = text/markdown
Tip!

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

Comments

Loading...