From c94b587e1aeec936374b38c22d8689b0651d8476 Mon Sep 17 00:00:00 2001 From: Finn Evers Date: Fri, 4 Apr 2025 17:32:30 +0200 Subject: [PATCH] squawk: Specify PostgreSQL version in config (#28094) This PR adds the PostgreSQL version to the squawk config, see https://squawkhq.com/docs/cli#specifying-postgres-version for reference. The specified version matches the PostgreSQL version in the compose-file https://github.com/zed-industries/zed/blob/43cb925a599ead7ddbeee26efd1f5af1d1dea97a/compose.yml#L3 and prevents false positives like https://github.com/zed-industries/zed/pull/28090#issuecomment-2778871346 from happening (tested it locally with that commit). Release Notes: - N/A --- script/lib/squawk.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/script/lib/squawk.toml b/script/lib/squawk.toml index 824b8b8793..83a238c4ff 100644 --- a/script/lib/squawk.toml +++ b/script/lib/squawk.toml @@ -8,3 +8,4 @@ excluded_rules = [ "prefer-big-int", "prefer-bigint-over-int", ] +pg_version = "15.0"