nomonic
    Preparing search index...

    Interface ScanViolation

    A BIP39 violation tied to a specific file, produced by scanFiles.

    interface ScanViolation {
        file: string;
        line: string;
        lineNumber: number;
        matchedWords: string[];
    }
    Index

    Properties

    file: string

    The file path where the violation was found.

    line: string

    The full text of the line where the violation starts.

    lineNumber: number

    The 1-based line number within the file.

    matchedWords: string[]

    The consecutive BIP39 words that triggered the violation.