From 58b2d78f5220a4ffd10ad9fbfa3b5f5c048b2729 Mon Sep 17 00:00:00 2001 From: Yukihiko Shinoda Date: Mon, 25 May 2020 17:26:46 +0900 Subject: [PATCH] disable bad-continuation for pylint @see https://github.com/PyCQA/pylint/pull/3571 --- {{cookiecutter.project_slug}}/pyproject.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/{{cookiecutter.project_slug}}/pyproject.toml b/{{cookiecutter.project_slug}}/pyproject.toml index d934b21e4..39687c22b 100644 --- a/{{cookiecutter.project_slug}}/pyproject.toml +++ b/{{cookiecutter.project_slug}}/pyproject.toml @@ -16,3 +16,9 @@ line-length = {{ cookiecutter.python_code_max_length_per_line }} [tool.pylint.format] max-line-length = "{{ cookiecutter.python_code_max_length_per_line }}" {%- endif %} + +[tool.pylint.messages_control] +# bad-continuation: @see https://github.com/PyCQA/pylint/pull/3571 +disable = ''', + bad-continuation, + '''