From 527bfeb7ecd27a64875d7d4183b475feae860a2b Mon Sep 17 00:00:00 2001 From: Joel Collins Date: Thu, 12 Nov 2020 17:07:58 +0000 Subject: [PATCH] Moved PyLint config back to pyproject.toml --- .pylintrc | 4 ---- pyproject.toml | 4 ++++ 2 files changed, 4 insertions(+), 4 deletions(-) delete mode 100644 .pylintrc diff --git a/.pylintrc b/.pylintrc deleted file mode 100644 index 9aa90314..00000000 --- a/.pylintrc +++ /dev/null @@ -1,4 +0,0 @@ -[MESSAGES CONTROL] - -disable=fixme,C,R -max-line-length = 88 \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index a40df870..836e1dfd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -70,3 +70,7 @@ force_grid_wrap = 0 use_parentheses = true ensure_newline_before_comments = true line_length = 88 + +[tool.pylint.'MESSAGES CONTROL'] +disable = "fixme,C,R" +max-line-length = 88