File tree 8 files changed +8
-0
lines changed
8 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 3
3
disable =
4
4
bad-continuation, # we let black handle this
5
5
ungrouped-imports, # we let isort handle this
6
+ consider-using-f-string # disable until 2022-05-05; 6 months after 3.5 deprecation
6
7
7
8
[FORMAT]
8
9
max-line-length = 120
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ disable =
5
5
missing-docstring, # we don't write docstrings for tests
6
6
bad-continuation, # we let black handle this
7
7
ungrouped-imports, # we let isort handle this
8
+ consider-using-f-string # disable until 2022-05-05; 6 months after 3.5 deprecation
8
9
9
10
[FORMAT]
10
11
max-line-length = 120
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ disable =
14
14
attribute-defined-outside-init, # breaks with attrs_post_init
15
15
abstract-method, # throws false positives on io.BaseIO grandchildren
16
16
redefined-outer-name, # we do this on purpose in multiple places
17
+ consider-using-f-string # disable until 2022-05-05; 6 months after 3.5 deprecation
17
18
18
19
[BASIC]
19
20
# Allow function names up to 50 characters
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ disable =
7
7
# unknown modules as non-standard-library. flake8 tests for this as well
8
8
# and does treat them properly
9
9
duplicate-code, # tests for similar things tend to be similar
10
+ consider-using-f-string # disable until 2022-05-05; 6 months after 3.5 deprecation
10
11
11
12
[VARIABLES]
12
13
additional-builtins = raw_input
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ disable =
14
14
useless-object-inheritance,
15
15
raise-missing-from,
16
16
super-with-arguments,
17
+ consider-using-f-string # disable until 2022-05-05; 6 months after 3.5 deprecation
17
18
18
19
[BASIC]
19
20
# Allow function names up to 50 characters
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ disable =
22
22
useless-object-inheritance,
23
23
raise-missing-from,
24
24
super-with-arguments,
25
+ consider-using-f-string # disable until 2022-05-05; 6 months after 3.5 deprecation
25
26
26
27
[VARIABLES]
27
28
additional-builtins = raw_input
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ disable =
8
8
useless-object-inheritance,
9
9
raise-missing-from,
10
10
super-with-arguments,
11
+ consider-using-f-string # disable until 2022-05-05; 6 months after 3.5 deprecation
11
12
12
13
[FORMAT]
13
14
max-line-length = 120
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ disable =
11
11
useless-object-inheritance,
12
12
raise-missing-from,
13
13
super-with-arguments,
14
+ consider-using-f-string # disable until 2022-05-05; 6 months after 3.5 deprecation
14
15
15
16
[FORMAT]
16
17
max-line-length = 120
You can’t perform that action at this time.
0 commit comments