summaryrefslogtreecommitdiff
path: root/.flake8
blob: 22ded064a63f0f1f9a606ecd8d430f5eb33d812f (plain)
1
2
3
4
5
6
7
8
9
[flake8]
select = ANN,B,B9,BLK,C,D,DAR,E,F,I,S,W
ignore = E203,E501,W503,ANN101,F401,D202
max-line-length = 120
max-complexity = 10
application-import-names = text_recognizer,tests
import-order-style = google
docstring-convention = google
per-file-ignores = tests/*:S101,src/text_recognizer/datasets/*:S110,src/training/callbacks/*:B006