From b7f2bca931a21f22fe51a0f3a4086691cf47da36 Mon Sep 17 00:00:00 2001 From: ValdiANS Date: Tue, 19 May 2026 11:51:59 +0700 Subject: [PATCH] feat: add rtk filters.toml --- .rtk/filters.toml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .rtk/filters.toml diff --git a/.rtk/filters.toml b/.rtk/filters.toml new file mode 100644 index 00000000..d9bd43fe --- /dev/null +++ b/.rtk/filters.toml @@ -0,0 +1,13 @@ +# Project-local RTK filters — commit this file with your repo. +# Filters here override user-global and built-in filters. +# Docs: https://github.com/rtk-ai/rtk#custom-filters +schema_version = 1 + +# Example: suppress build noise from a custom tool +# [filters.my-tool] +# description = "Compact my-tool output" +# match_command = "^my-tool\\s+build" +# strip_ansi = true +# strip_lines_matching = ["^\\s*$", "^Downloading", "^Installing"] +# max_lines = 30 +# on_empty = "my-tool: ok"