File tree Expand file tree Collapse file tree 4 files changed +15
-12
lines changed Expand file tree Collapse file tree 4 files changed +15
-12
lines changed Original file line number Diff line number Diff line change @@ -60,6 +60,7 @@ https://semver.org/spec/v2.0.0.html
60
60
- Remove dependency on ` unittest2 ` .
61
61
- Upgrade lower limit for ` flake8 ` to 3.9.
62
62
- Upgrade upper limit for ` flake8 ` to 7.3.
63
+ - Include dependency on ` flake8-pyproject ` .
63
64
- Upgrade lower limit for ` astroid ` to 3.0.
64
65
- Upgrade upper limit for ` astroid ` to 3.4.
65
66
- Upgrade lower limit for ` pylint ` to 3.0.
Original file line number Diff line number Diff line change 1
1
flake8 >= 3.9, < 7.3
2
+ flake8-pyproject >= 1.0, < 1.3
2
3
3
4
astroid >= 3.0, < 3.4
4
5
pylint >= 3.0, < 3.4
Original file line number Diff line number Diff line change @@ -8,6 +8,19 @@ requires = [
8
8
]
9
9
build-backend = " setuptools.build_meta"
10
10
11
+ [tool .flake8 ]
12
+ ignore = [
13
+ " E301" , # expected-blank-line-missing
14
+ " E306" , # no-blank-line-before-nested-def
15
+ " E402" , # module-import-not-at-top-file
16
+ " E501" , # line-too-long
17
+ " E731" , # used-lambda
18
+ " F401" , # unused-import
19
+ " F403" , # wildcard-import
20
+ " W503" , # line-break-before-binary-operator
21
+ " W504" , # line-break-after-binary-operator
22
+ ]
23
+
11
24
[tool .pytest .ini_options ]
12
25
filterwarnings = [
13
26
" error" ,
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments