-
Notifications
You must be signed in to change notification settings - Fork 34
/
setup.cfg
34 lines (29 loc) · 805 Bytes
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[flake8]
max-line-length = 79
no-accept-encodings = True
[isort]
line_length=79
indent=' '
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
use_parentheses=True
balanced_wrapping=True
known_graphql=graphql,promise,graphene,graphene_sqlalchemy
known_database=sqlalchemy
known_third_party=pytest
lines_after_imports=2
skip=venv,setup.py,noxfile.py
sections=FUTURE,STDLIB,THIRDPARTY,GRAPHQL,DATABASE,FIRSTPARTY,LOCALFOLDER
import_heading_stdlib=Standard Library
import_heading_thirdparty=Third Party
import_heading_graphql=GraphQL
import_heading_database=Database
import_heading_firstparty=Project
import_heading_localfolder=This module
[coverage:report]
show_missing = True
exclude_lines =
pragma: no cover
only graphene-sqlalchemy==2.2.0
only graphene-sqlalchemy<2.2.0