Skip to content

Commit df24e2b

Browse files
committed
style(lint): suppress fstring
1 parent fb74b99 commit df24e2b

File tree

8 files changed

+8
-0
lines changed

8 files changed

+8
-0
lines changed

decrypt_oracle/src/pylintrc

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
disable =
44
bad-continuation, # we let black handle this
55
ungrouped-imports, # we let isort handle this
6+
consider-using-f-string # disable until 2022-05-05; 6 months after 3.5 deprecation
67

78
[FORMAT]
89
max-line-length = 120

decrypt_oracle/test/pylintrc

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ disable =
55
missing-docstring, # we don't write docstrings for tests
66
bad-continuation, # we let black handle this
77
ungrouped-imports, # we let isort handle this
8+
consider-using-f-string # disable until 2022-05-05; 6 months after 3.5 deprecation
89

910
[FORMAT]
1011
max-line-length = 120

examples/src/pylintrc

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ disable =
1414
attribute-defined-outside-init, # breaks with attrs_post_init
1515
abstract-method, # throws false positives on io.BaseIO grandchildren
1616
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
1718

1819
[BASIC]
1920
# Allow function names up to 50 characters

examples/test/pylintrc

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ disable =
77
# unknown modules as non-standard-library. flake8 tests for this as well
88
# and does treat them properly
99
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
1011

1112
[VARIABLES]
1213
additional-builtins = raw_input

src/pylintrc

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ disable =
1414
useless-object-inheritance,
1515
raise-missing-from,
1616
super-with-arguments,
17+
consider-using-f-string # disable until 2022-05-05; 6 months after 3.5 deprecation
1718

1819
[BASIC]
1920
# Allow function names up to 50 characters

test/pylintrc

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ disable =
2222
useless-object-inheritance,
2323
raise-missing-from,
2424
super-with-arguments,
25+
consider-using-f-string # disable until 2022-05-05; 6 months after 3.5 deprecation
2526

2627
[VARIABLES]
2728
additional-builtins = raw_input

test_vector_handlers/src/pylintrc

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ disable =
88
useless-object-inheritance,
99
raise-missing-from,
1010
super-with-arguments,
11+
consider-using-f-string # disable until 2022-05-05; 6 months after 3.5 deprecation
1112

1213
[FORMAT]
1314
max-line-length = 120

test_vector_handlers/test/pylintrc

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ disable =
1111
useless-object-inheritance,
1212
raise-missing-from,
1313
super-with-arguments,
14+
consider-using-f-string # disable until 2022-05-05; 6 months after 3.5 deprecation
1415

1516
[FORMAT]
1617
max-line-length = 120

0 commit comments

Comments
 (0)