UNPKG

@accordproject/concerto-linter-default-ruleset

Version:

Default ruleset for the Accord Project Concerto Linter

20 lines (19 loc) 607 B
/** * Rule: Pascal Case Decorators * ------------------------------ * Ensures that decorator names follow PascalCase naming convention (e.g., 'MyDecorator'). * This promotes consistency and readability across model decorators. */ declare const _default: { description: string; given: string[]; message: string; severity: number; then: { function: import("@stoplight/spectral-core").RulesetFunctionWithValidator<string, import("@stoplight/spectral-functions").CasingOptions>; functionOptions: { type: string; }; }; }; export default _default;