Skip to content
This repository has been archived by the owner on May 21, 2022. It is now read-only.

Commit

Permalink
pylama config for black format
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicolas Cellier committed Sep 19, 2018
1 parent 4059ce7 commit 9522de0
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions pylama.ini
@@ -0,0 +1,16 @@
[pylama]
skip = .eggs/*,*/.tox/*,*/.env/*,_sandbox/*,docs/conf.py

[pylama:pycodestyle]
max_line_length = 100

# E203: whitespace before ':' (for black)
# W503: line break before binary operator (for black)
ignore = E203,W503

[pylama:pylint]
max_line_length = 100

[pylama:*/__init__.py]
# W0611: imported but unused [pyflakes]
ignore = W0611

0 comments on commit 9522de0

Please sign in to comment.