forked from aio-libs/aiocache
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.flake8
More file actions
23 lines (21 loc) · 739 Bytes
/
Copy path.flake8
File metadata and controls
23 lines (21 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[flake8]
enable-extensions = G
max-doc-length = 90
max-line-length = 90
select = A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z,B901,B902,B903,B950
# E226: Missing whitespace around arithmetic operators can help group things together.
# E501,W505: Superseeded by B950 (from Bugbear)
# E704: Allow overloaded function to use Ellipsis as body
# E722: Superseeded by B001 (from Bugbear)
# W503: Mutually exclusive with W504.
ignore = E226,E501,E704,E722,W503,W505
per-file-ignores =
# S*: Bandit security checks not useful in tests.
tests/*:S
# flake8-import-order
application-import-names = aiocache
import-order-style = pycharm
# flake8-quotes
inline-quotes = "
# flake8-requirements
requirements-file = requirements-dev.txt