Member Junction
    Preparing search index...

    .mj-standards.json — a repo's adoption record.

    Deliberately explicit rather than convention-driven: reading this file should tell you exactly which standards this repo has agreed to and how strictly, without knowing anything about the version of the tool that will read it.

    interface StandardsConfig {
        $schema?: string;
        Checks: Record<string, CheckConfig>;
        Roots?: string[];
        StandardsVersion: string;
    }
    Index

    Properties

    $schema?: string

    JSON-schema pointer, for editor completion.

    Checks: Record<string, CheckConfig>

    Per-check configuration. A check absent from this map does not run.

    Roots?: string[]

    Default roots for checks that don't name their own.

    StandardsVersion: string

    The MJ version this repo adopted standards against.

    Checks with a Since greater than this are reported as available and are NOT run. Bumping this is a deliberate act (mj standards adopt --upgrade), never a side effect of upgrading the package.