Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reduced the list of ignored errors by flake8 #1598

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ include_trailing_comma=True
force_grid_wrap=0
use_parentheses=True
line_length=120
skip_glob=docs/**,examples/**
skip_glob=docs/**
filter_files=True

[flake8]
max-line-length = 120
ignore = E203,E231,E305,E402,E721,E722,E741,F401,F403,F405,F821,F841,F999,W503
ignore = E722,F401,E203,E231,F841,W503,F403,E402

[tool:pytest]
markers =
Expand Down