npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@pgsql/lint

v18.2.5

Published

Source-level SQL/PL/pgSQL convention linter: fully-qualified references, no search_path, no dynamic SQL, with ESLint-style inline waivers. Pure AST, no database.

Downloads

5,272

Readme

@pgsql/lint

A source-level SQL / PL/pgSQL convention linter. It reasons about the text of a CREATE FUNCTION definition — from its AST — and carries no pg / catalog dependency, so the exact same engine runs over a definition in a migration, an editor buffer, a pre-commit hook, or one read from a live catalog via pg_get_functiondef.

Installation

npm install @pgsql/lint

Rules

| Code | Id | Flags | |------|----|-------| | C1 | no-set-search-path | SET search_path clause, or set_config('search_path', …) | | C2 | no-variable-conflict | a PL/pgSQL #variable_conflict directive | | C3 | require-qualified-refs | an unqualified relation reference (FROM usersFROM app_public.users) | | C4 | no-dynamic-sql | EXECUTE, EXECUTE … USING, FOR … IN EXECUTE |

The rules encode a single discipline: never depend on search_path — fully qualify everything (C1 + C3) — don't paper over ambiguity (C2), and treat dynamic SQL as opaque and exceptional (C4).

CLI

pgsql-lint path/to/migrations           # a directory (scanned recursively for .sql)
pgsql-lint schema.sql other.sql         # explicit files
pgsql-lint . --rules no-dynamic-sql     # only some rules
pgsql-lint . --warn require-qualified-refs   # downgrade to a warning (won't fail)
pgsql-lint . --off C2                        # disable a rule (by id or code)
pgsql-lint . --json                     # machine-readable
pgsql-lint . --ignore 'sql/,**/generated/**' # exclude generated trees
pgsql-lint --changed                    # only .sql that this branch touched
pgsql-lint --changed origin/main        # …against an explicit base

Exit code is 1 when any error-severity (and non-waived) finding remains, 0 otherwise — drop it straight into CI. --warn findings print but don't fail.

Changed files only

--changed[=<base>] lints just the .sql files a branch touched, so a CI gate costs a second instead of scanning the whole tree. The base defaults to the pull request's base branch ($GITHUB_BASE_REF) and otherwise to the repository's default branch; the diff is taken against git merge-base HEAD <base>, so commits landed on the base branch afterwards don't widen the set. Uncommitted and untracked changes are included, deleted/renamed-away paths are dropped, and a shallow clone or detached checkout (no resolvable base) falls back to working-tree changes only. Nothing changed is an exit-0 pass.

Detection is git-changed, shared with pgpm package --check, so the two agree on what "changed" means.

Config file

.pgsqllintrc.json, discovered by walking up from the working directory (or passed with --config <file>; --no-config skips discovery). The keys mirror the flags, and any flag overrides the file:

{
  "extends": "./ci/lint-base.json",
  "paths": ["packages", "application/app"],
  "ignore": ["sql/", "application/constructive/", "**/generated/**"],
  "warn": ["require-qualified-refs"],
  "off": ["C2"]
}

paths supplies the default targets when none are given on the command line, so pgsql-lint and pgsql-lint --changed need no arguments. extends names another config file — a path relative to the file that declared it, or an npm module — and the inheriting file wins key by key. Ignore patterns are gitignore-flavoured globs relative to the config file's directory: * within a segment, ** across segments, a plain path excludes the whole subtree, and an unanchored pattern matches at any segment boundary (/ anchors it to the root).

Suppressions

ESLint / Prettier-style comments, authored in the function body (they survive pg_get_functiondef). The keyword is pgsql-lint (safegres is also accepted):

-- pgsql-lint-disable-next-line no-dynamic-sql -- lookup-only: building an IN-list of ints
EXECUTE format('SELECT … WHERE id = ANY(%L)', ids);

Forms: disable-next-line, disable-line, disableenable (a range), and disable-file. A directive with no rule listed applies to every rule; a reason follows a second -- or a :.

no-dynamic-sql requires a reason: a reasonless waiver does not silence it, so an approved use always documents why (lookup-only / codegen). Suppressed findings are reported as acknowledged accepted-risk, never dropped.

Programmatic API

import { lintDefinition, lintFiles, lintSqlText } from '@pgsql/lint';

// one definition (e.g. from pg_get_functiondef)
const { problems, suppressed } = await lintDefinition(defText, 'plpgsql');

// a SQL source string with many statements
const report = await lintSqlText(migrationSql);

// files / directories on disk
const reports = await lintFiles(['./migrations']);

Custom rules & severity (building an ecosystem)

Rules are injected as values — never discovered by a magic npm package name. A rule is a plain object; publish it, import it, and pass it to createLinter. Severity is configuration (ESLint-style off / warn / error), keyed by rule id or code, so a consumer stays in full control of how loud each rule is:

import { createLinter, defineRule, LINT_RULES } from '@pgsql/lint';

const noWritesInView = defineRule({
  id: 'no-writes-in-view',
  code: 'X1',
  title: 'views must be read-only',
  reasonRequired: false,
  run: (unit) => [/* … inspect unit.fragments / unit.dynamicSql … */]
});

const linter = createLinter({
  rules: [...LINT_RULES, noWritesInView],
  severity: { 'require-qualified-refs': 'warn', C2: 'off' }
});

await linter.lintFiles(['./migrations']);   // also lintDefinition / lintSqlText / lintSource

Source adapters

Rules are pure unit → problems; an adapter decides where the definitions come from. @pgsql/lint ships filesAdapter and sqlTextAdapter; a consumer (e.g. safegres, reading a live catalog via pg_get_functiondef) implements the SourceAdapter interface and passes it to linter.lintSource(adapter).

interface SourceAdapter {
  id: string;
  definitions: () => Promise<LintDefinitionInput[]> | LintDefinitionInput[];
}

🛠 Built by the Constructive team — creators of modular Postgres tooling for secure, composable backends. If you like our work, contribute on GitHub.

Related

  • pgpm: A Postgres Package Manager that brings modular development to PostgreSQL with reusable packages, deterministic migrations, recursive dependency resolution, and tag-aware versioning.
  • pgsql-test: Instant, isolated PostgreSQL databases for each test with automatic transaction rollbacks, context switching, and clean seeding for fast, reliable database testing.
  • pgsql-seed: PostgreSQL seeding utilities for CSV, JSON, SQL data loading, and pgpm deployment.
  • pgsql-parser: The real PostgreSQL parser for Node.js, providing symmetric parsing and deparsing of SQL statements with actual PostgreSQL parser integration.
  • pgsql-deparser: A streamlined tool designed for converting PostgreSQL ASTs back into SQL queries, focusing solely on deparser functionality to complement pgsql-parser.
  • @pgsql/parser: Multi-version PostgreSQL parser with dynamic version selection at runtime, supporting PostgreSQL 15, 16, and 17 in a single package.
  • @pgsql/types: Offers TypeScript type definitions for PostgreSQL AST nodes, facilitating type-safe construction, analysis, and manipulation of ASTs.
  • @pgsql/enums: Provides TypeScript enum definitions for PostgreSQL constants, enabling type-safe usage of PostgreSQL enums and constants in your applications.
  • @pgsql/utils: A comprehensive utility library for PostgreSQL, offering type-safe AST node creation and enum value conversions, simplifying the construction and manipulation of PostgreSQL ASTs.
  • @pgsql/traverse: PostgreSQL AST traversal utilities for pgsql-parser, providing a visitor pattern for traversing PostgreSQL Abstract Syntax Tree nodes, similar to Babel's traverse functionality but specifically designed for PostgreSQL AST structures.
  • pg-proto-parser: A TypeScript tool that parses PostgreSQL Protocol Buffers definitions to generate TypeScript interfaces, utility functions, and JSON mappings for enums.
  • libpg-query: The real PostgreSQL parser exposed for Node.js, used primarily in pgsql-parser for parsing and deparsing SQL queries.

Disclaimer

AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED "AS IS", AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.

No developer or entity involved in creating Software will be liable for any claims or damages whatsoever associated with your use, inability to use, or your interaction with other users of the Software code or Software CLI, including any direct, indirect, incidental, special, exemplary, punitive or consequential damages, or loss of profits, cryptocurrencies, tokens, or anything else of value.