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

Update pylama.cfg #5

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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 config/pylama.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ linters = pylint,pyflakes,radon
# Conventions and Refactor recommendations are disabled for the CI system, but should be turned on when developing code
# C0301 is line length, as long as you use black to format your code it will be perfect
# W0612 is for unused variables, pyflakes reports if a variable is assigned to and still unused which is more useful
disable = C0301,W0612
disable = C0301,W0612,E0401
# resolves import error for lxml packages
extension-pkg-whitelist=lxml

Expand All @@ -28,4 +28,4 @@ show_complexity = true

# [pylama:*/test.py]
# # you can have pylama skip specific files or folders using skip
# skip = 1
# skip = 1
Loading