layer-conform-0.1.0 is not a library.
layer-conform
Detect "style deviations" within a layer of a TypeScript/JavaScript project — i.e. find functions that look different from the rest of their layer.
Install
Build from source
Quickstart
Generate a starter config:
Edit .layer-conform.json to point at your golden(s) and the glob of files that
should look like them:
Then check the workspace:
Skip a single function with an inline directive:
// layer-conform-ignore: legacy adapter, will be deleted in Q3
function useLegacy() { ... }
Subcommands
| Command | What it does |
|---|---|
layer-conform (no args) / layer-conform check |
Run every rule against every matching file |
layer-conform check --explain <FILE> |
Same, but show only one file's detail |
layer-conform why <FILE> |
List every rule + golden that touches <FILE> and its scoring |
layer-conform init [--force] |
Write a starter .layer-conform.json |
Global flags
| Flag | Effect |
|---|---|
--threshold <N> |
Override every rule's threshold (e.g. 0.5) |
--no-color |
Disable ANSI colors |
--json |
Emit machine-readable JSON (see spec §6) |
Configuration shape
Each rule supports the following polymorphic shorthands:
golden:"file.ts:symbol"|{ "file": "...", "symbol": "..." }| array of eitherapplyTo/ignore:string|string[]threshold: optionalnumber(default0.7)disabled: optionalboolean
Multi-golden picks the highest-scoring golden per function:
Function kinds detected
function fn() {}, const x = () => {}, const x = function() {},
{ method() {} }, class C { method() {} prop = () => {} },
export default function() {}, export default () => {}.
Status
- ✅ Phase 1a: layer-conform-core (APTED + TSED + 4-axis similarity)
- ✅ Phase 1b: layer-conform-ts (FunctionDeclaration only) + CLI 1-pair compare
- ✅ Phase 2: config-driven check, all 6 function kinds, multi-golden,
layer-conform-ignoredirective,--explain/why,init,--threshold/--no-color/--json - ⏳ Phase 3: baseline,
--changed,--summary - ⏳ Phase 4:
init --auto, multi-language, distribution
See docs/superpowers/specs/2026-04-26-layer-conform-design.md.