From 952e7588436aa75b7f8ad334651171c0808da836 Mon Sep 17 00:00:00 2001 From: Sebastian Tramp Date: Mon, 13 Nov 2023 15:32:51 +0100 Subject: [PATCH] ruff: ignore EM* --- src/pyproject.toml.jinja | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pyproject.toml.jinja b/src/pyproject.toml.jinja index abba214..430f192 100644 --- a/src/pyproject.toml.jinja +++ b/src/pyproject.toml.jinja @@ -69,7 +69,7 @@ ignore = [ "D213", # Multi-line docstring summary should start at the second line "D400", # First line should end with a period "D415", # First line should end with a period, question mark, or exclamation point - "EM101", # Exception must not use a string literal, assign to variable first + "EM", # Exception texts - https://docs.astral.sh/ruff/rules/#flake8-errmsg-em "G004", # Logging statement uses f-string "ISC001", # single-line-implicit-string-concatenation "S101", # use of assert detected