Skip to content

Commit fa2ddf8

Browse files
committed
Remove flake8 and isort config from setup.cfg
1 parent 1fe1895 commit fa2ddf8

File tree

1 file changed

+0
-37
lines changed

1 file changed

+0
-37
lines changed

setup.cfg

Lines changed: 0 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -4,46 +4,9 @@ test=pytest
44
[bdist_wheel]
55
universal=1
66

7-
[flake8]
8-
exclude = docs,graphene_django/debug/sql/*
9-
max-line-length = 120
10-
select =
11-
# Dictionary key repeated
12-
F601,
13-
# Ensure use of ==/!= to compare with str, bytes and int literals
14-
F632,
15-
# Redefinition of unused name
16-
F811,
17-
# Using an undefined variable
18-
F821,
19-
# Defining an undefined variable in __all__
20-
F822,
21-
# Using a variable before it is assigned
22-
F823,
23-
# Duplicate argument in function declaration
24-
F831,
25-
# Black would format this line
26-
BLK,
27-
# Do not use bare except
28-
B001,
29-
# Don't allow ++n. You probably meant n += 1
30-
B002,
31-
# Do not use mutable structures for argument defaults
32-
B006,
33-
# Do not perform calls in argument defaults
34-
B008
35-
367
[coverage:run]
378
omit = */tests/*
389

39-
[isort]
40-
known_first_party=graphene,graphene_django
41-
multi_line_output=3
42-
include_trailing_comma=True
43-
force_grid_wrap=0
44-
use_parentheses=True
45-
line_length=88
46-
4710
[tool:pytest]
4811
DJANGO_SETTINGS_MODULE = examples.django_test_settings
4912
addopts = --random-order

0 commit comments

Comments
 (0)