From 280759dec8009e46680fc21ebc895d1a746730a5 Mon Sep 17 00:00:00 2001 From: Timur Brachkow <33203187+brachkow@users.noreply.github.com> Date: Mon, 30 Sep 2024 11:56:07 +0200 Subject: [PATCH] Add codeowners (#320) * Add ignore unknown file * Add codeowners --- .lintstagedrc | 2 +- CODEOWNERS | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 CODEOWNERS diff --git a/.lintstagedrc b/.lintstagedrc index bb985d6a..dbcc4620 100644 --- a/.lintstagedrc +++ b/.lintstagedrc @@ -1,4 +1,4 @@ { - "*": ["prettier --write"], + "*": ["prettier --write --ignore-unknown"], "*.(ts|tsx|js|jsx|vue)": ["eslint --fix"] } diff --git a/CODEOWNERS b/CODEOWNERS new file mode 100644 index 00000000..bcc3fb58 --- /dev/null +++ b/CODEOWNERS @@ -0,0 +1,8 @@ +* @brachkow +.* @brachkow +!docker-compose.yml @brachkow +!Dockerfile @brachkow + +.github/workflows/ci.yml @f213 +docker-compose.yml @f213 +Dockerfile @f213 \ No newline at end of file