markuplint
Version:
An HTML linter for all markup developers
22 lines (21 loc) • 845 B
JavaScript
/**
* @module markuplint
*
* Main package entry point for markuplint.
* Re-exports the public API surface including the lint engine, types,
* internationalization utilities, testing tools, and version information.
*/
/** The primary linting engine and options for linting from source code strings. */
export { MLEngine } from './api/index.js';
/** Internationalization utilities for loading locale-specific message sets. */
export * from './i18n.js';
/** Testing utilities for verifying markuplint rules and configurations. */
export * from './testing-tool/index.js';
/** Shared type definitions for lint results and violations. */
export * from './types.js';
/** The current markuplint package version string. */
export { version } from './version.js';
/**
* @deprecated Use the current API exports instead.
*/
export * from './v1.js';