From 65d16c52a3bbd4708186e035bd1c92598c25a5a1 Mon Sep 17 00:00:00 2001 From: appleboy Date: Fri, 4 Oct 2024 15:15:35 +0800 Subject: [PATCH] chore: improve code quality and testing robustness - Add hadolint configuration file with rules DL3018 and DL3008 ignored Signed-off-by: appleboy --- .hadolint.yaml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .hadolint.yaml diff --git a/.hadolint.yaml b/.hadolint.yaml new file mode 100644 index 0000000..502b578 --- /dev/null +++ b/.hadolint.yaml @@ -0,0 +1,3 @@ +ignored: + - DL3018 + - DL3008