Skip to content

Instantly share code, notes, and snippets.

@fredcamps
Created December 16, 2016 21:01
Show Gist options
  • Save fredcamps/1d54989866af91f3de0003e3c18d8b3f to your computer and use it in GitHub Desktop.
Save fredcamps/1d54989866af91f3de0003e3c18d8b3f to your computer and use it in GitHub Desktop.
My linter config
[pylama]
format = pycodestyle
linters = radon,pycodestyle,pydocstyle,pyflakes,pylint
ignore = D203,D212,D213,D404
skip = */.tox/*,*/.env/*
[pylama:pyflakes]
builtins = _
[pylama:pylint]
max_line_length = 80
disable = R
[pylama:pycodestyle]
max_line_length = 80
[pylama:mccabe]
complexity = 10
[pylama:radon]
complexity = 10
show_closures = True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment