Rocky_Mountain_Vending/.pnpm-store/v10/files/a3/ea193a5e26f304eb181874e907370320ef085234f7c2ace3a00101b8e6305891c79521e8aded2073d0911c2cf588d56084d5386bf0b4b888ed49f308b775d0
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

36 lines
671 B
Text

/**
* @license
* Copyright 2017 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @fileoverview Base class for audits that the user should verify manually on
* their site.
*/
import {Audit} from '../audit.js';
class ManualAudit extends Audit {
/**
* @return {Pick<LH.Audit.Meta, 'scoreDisplayMode'|'requiredArtifacts'>}
*/
static get partialMeta() {
return {
scoreDisplayMode: Audit.SCORING_MODES.MANUAL,
requiredArtifacts: [],
};
}
/**
* @return {LH.Audit.Product}
*/
static audit() {
return {
score: 0,
// displayValue: '(needs manual verification)'
};
}
}
export default ManualAudit;