@accordproject/concerto-linter-default-ruleset
Version:
Default ruleset for the Accord Project Concerto Linter
21 lines (20 loc) • 652 B
TypeScript
/**
* Rule: Camel Case Properties
* ---------------------------
* Ensures that properties of type String, Double, Integer, Long, DateTime, and Boolean
* are named using camelCase. This promotes consistency and readability in property naming
* conventions across the model.
*/
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;