Skip to content
Snippets Groups Projects
Commit 1d8f44f6 authored by Bo-Chun Chen's avatar Bo-Chun Chen
Browse files

Disable pylint logging-fstring-interpolation

According to the comment here:
https://github.com/PyCQA/pylint/issues/2354#issuecomment-414526879

I think the f-string could be used in logging.
parent 20aca8b9
No related branches found
No related tags found
1 merge request!131WIP: Fix linting
...@@ -3,6 +3,6 @@ line-length = 79 ...@@ -3,6 +3,6 @@ line-length = 79
target-version = ['py36'] target-version = ['py36']
preview = true preview = true
[tool.pylint.main] [tool.pylint.main]
disable = ["invalid-name"] disable = ["invalid-name", "logging-fstring-interpolation"]
[tool.pylint.format] [tool.pylint.format]
max-line-length = 79 max-line-length = 79
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment