We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4dd579 commit b1dbbd3Copy full SHA for b1dbbd3
1 file changed
setup.cfg
@@ -33,10 +33,14 @@ ignore_missing_imports = True
33
34
[flake8]
35
ignore =
36
- E501, # max line length
37
- W503, # line break before binary operator; fights with black
+ # max line length
+ E501,
38
+ # multiple statements on one line (def); fights with black
39
+ E704,
40
+ # line break before binary operator; fights with black
41
+ W503,
42
43
[coverage:run]
44
include =
- sql_athame/**py
- tests/**py
45
+ sql_athame/**/*.py
46
+ tests/**/*.py
0 commit comments