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

.flake8 809 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
  1. [flake8]
  2. exclude =
  3. .git
  4. .venv
  5. .pytest_cache
  6. .mypy_cache
  7. __pycache__
  8. # These rules conflict with black. Black doesn't cover some checks of flake8 for example unused import.
  9. # pysen (https://github.com/pfnet/pysen/blob/main/setup.cfg#L8) also ignore following.
  10. ignore =
  11. # https://flake8.pycqa.org/en/latest/user/error-codes.html
  12. # https://pycodestyle.pycqa.org/en/latest/intro.html#error-codes
  13. E203, # whitespace before ':'.
  14. E231, # whitespace after ','.
  15. E501, # line too long; Black prefer 88 characters. We can set length 88 characters to flake8 by "max-line-length" option but we don't need double check.
  16. W503 # line break before binary operator; By default this option is not selected however once we set any "ignore" option, all non default options get enable.
Tip!

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

Comments

Loading...