diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-10-03 00:33:47 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-10-03 00:33:47 +0200 |
commit | e0d5ce561f369bf8669f2d17a9849f046a8f5f45 (patch) | |
tree | b41d31e7ea963ac37eccff5da58c1fce20ae7c9a /.flake8 | |
parent | becc8e1380a36f45a8dadf5a7cc6c7b922fe8dff (diff) |
Update to .flake8 file
Diffstat (limited to '.flake8')
-rw-r--r-- | .flake8 | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1,10 +1,9 @@ [flake8] select = ANN,B,B9,BLK,C,D,DAR,E,F,I,S,W -ignore = E203,E501,W503,ANN101,ANN002,ANN003,F401,D202,S404,D107,S607,S603,S310,S106,S311 +ignore = E203,E501,W503,ANN101,ANN002,ANN003,F401,D202,S404,D107,S607,S603,S310,S106,S311,S105,S405,S314 max-line-length = 88 max-complexity = 10 application-import-names = text_recognizer,tests import-order-style = google docstring-convention = google -per-file-ignores = tests/*:S101,tests/*:S106,src/text_recognizer/datasets/*:S110,src/training/callbacks/*:B006,src/tasks/build_transitions.py:C901 -exclude = src/text_recognizer/networks/transducer/* +per-file-ignores = tests/*:S101,tests/*:S106 |