From 4c330ccd44ca47e1a095b7ffd9af64889245957c Mon Sep 17 00:00:00 2001 From: Wyatt Stanke Date: Tue, 27 Feb 2024 14:53:15 -0500 Subject: [PATCH] Update exclude list in ruff.toml --- ruff.toml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/ruff.toml b/ruff.toml index 12322827..2bad1d65 100644 --- a/ruff.toml +++ b/ruff.toml @@ -1,4 +1,10 @@ -exclude = ["./playground", "./tests", "./scripts"] +exclude = [ + "./playground", + "./tests", + "./scripts", + # GH Actions + "./lib", +] line-length = 127 [lint]