From 796e9354067a03362753cf22ca33e7a6f8812886 Mon Sep 17 00:00:00 2001 From: SVJ_Vitor Date: Thu, 25 Apr 2024 17:13:53 +0200 Subject: [PATCH] DX: remove E402 from default ignored (#344) --- src/compwa_policy/check_dev_files/ruff.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/compwa_policy/check_dev_files/ruff.py b/src/compwa_policy/check_dev_files/ruff.py index 17afb6ab..02acf192 100644 --- a/src/compwa_policy/check_dev_files/ruff.py +++ b/src/compwa_policy/check_dev_files/ruff.py @@ -387,7 +387,6 @@ def __update_per_file_ignores( if os.path.exists(docs_dir) and os.path.isdir(docs_dir): key = f"{docs_dir}/*" default_ignores = { - "E402", # import not at top of file "INP001", # implicit namespace package "S101", # `assert` detected "S113", # requests call without timeout