From 0df7c9e6ebae56e5b4f7c86cc97c44056851e7e5 Mon Sep 17 00:00:00 2001 From: Trey Spiller Date: Mon, 28 Jul 2025 16:49:03 -0500 Subject: [PATCH] Fix syntax error in linter guide --- docs/guides/linter.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/linter.md b/docs/guides/linter.md index a453d4f066..22cc5077b8 100644 --- a/docs/guides/linter.md +++ b/docs/guides/linter.md @@ -221,7 +221,7 @@ This example specifies that the model `docs_example.full_model` should not run t ```sql linenums="1" MODEL( name docs_example.full_model, - ignored_rules: ["invalidselectstarexpansion"] # or "ALL" to turn off linting completely + ignored_rules ["invalidselectstarexpansion"] # or "ALL" to turn off linting completely ); ```