feat(lint): add linter rules for migration and naming conventions

* Implement migration safety rules:
  - MIG001: Warn on CREATE INDEX without CONCURRENT.
  - MIG002: Warn on ALTER TABLE ADD COLUMN NOT NULL without DEFAULT.
  - MIG003: Warn on ALTER TABLE ADD CONSTRAINT without NOT VALID.
* Implement naming conventions rules:
  - NAM001: Warn on non-snake_case table names.
  - NAM002: Warn on non-snake_case column names in CREATE TABLE.
  - NAM003: Warn on non-snake_case function names.
* Add test fixtures for all new rules.
This commit is contained in:
2026-06-27 22:15:02 +02:00
parent 932c83dbad
commit 7fb76bae3d
16 changed files with 1032 additions and 12 deletions
+15
View File
@@ -0,0 +1,15 @@
-- Fixtures for naming rules (NAM001-NAM003).
-- Quoted identifiers preserve case in the PG parse tree; unquoted identifiers
-- are always folded to lowercase by the parser and cannot violate snake_case.
-- NAM001: quoted CamelCase table name
CREATE TABLE "UserAccounts" (
-- NAM002: quoted camelCase column names
"userId" integer PRIMARY KEY,
"emailAddress" text NOT NULL
);
-- NAM003: quoted CamelCase function name
CREATE FUNCTION "GetUserById"(p_id integer) RETURNS text LANGUAGE sql AS $$
SELECT email FROM users WHERE id = p_id
$$;