Gaunt Sloth Assistant - v1.0.5
    Preparing search index...

    Interface RatingConfig

    Configuration for review rating feature. Allows configuring automated review scoring with pass/fail thresholds.

    interface RatingConfig {
        enabled?: boolean;
        errorOnReviewFail?: boolean;
        maxRating?: number;
        minRating?: number;
        passThreshold?: number;
    }
    Index

    Properties

    enabled?: boolean

    Enable or disable review rating.

    true
    
    errorOnReviewFail?: boolean

    Exit with error code 1 when review fails (below threshold). When false, exits normally (code 0) regardless of rating.

    true
    
    maxRating?: number

    Highest allowed value on the rating scale.

    10
    
    minRating?: number

    Lowest allowed value on the rating scale.

    0
    
    passThreshold?: number

    Minimum score (0-10) required to pass the review.

    6