11 lines
493 B
TypeScript
11 lines
493 B
TypeScript
/**
|
|
* Claude Code Plugin Linting Utilities
|
|
*
|
|
* Individual linters for different plugin components.
|
|
* Use lint-claude-plugin.ts for unified CLI access.
|
|
*/
|
|
|
|
export { lintHooks, type LintResult as HooksLintResult, type Violation as HooksViolation } from "./hooks";
|
|
export { lintSkills, type LintResult as SkillsLintResult, type Violation as SkillsViolation } from "./skills";
|
|
export { lintPlugins, type LintResult as PluginsLintResult, type Violation as PluginsViolation } from "./plugins";
|