You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# These rules conflict with black. Black doesn't cover some checks of flake8 for example unused import.
# pysen (https://github.com/pfnet/pysen/blob/main/setup.cfg#L8) also ignore following.
ignore = E203,E231,E501,W503
#E203, # whitespace before ':'.
#E231, # whitespace after ','.
#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.
#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.