Skip to content

Commit

Permalink
modified for isort options
Browse files Browse the repository at this point in the history
  • Loading branch information
kamo-naoyuki committed May 18, 2022
1 parent 8f73b73 commit d0f2eac
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,18 @@ execution_timeout = 2.0
# [H238] old style class declaration, use new style (inherit from `object`)
# [H102 H103] Newly contributed Source Code should be licensed under the Apache 2.0 license. All source files should have the following header::
# [W504] Line break occurred after a binary operator
# [H301] one import per line
# [H306] imports not in alphabetical order

# Black says "W503, E203 is incompatible with PEP 8"
# [W503] Line break occurred before a binary operator
# [E203] whitespace before :

[flake8]
ignore = H102,H103,W503,H238,E203
ignore = H102,H103,W503,H238,E203,H301,H306
max-line-length = 88
[pycodestyle]
ignore = H102,H103,W503,H238,E203
ignore = H102,H103,W503,H238,E203,H301,H306
max-line-length = 88
[isort]
profile = black

0 comments on commit d0f2eac

Please sign in to comment.