persona-community-5/.pnpm-store/v3/files/d5/f819c949760e1181b45e1bf848a1e58e6d969dcd72a8c94bbb3b9238032e19dd1d0b3d659cbd1ecb2f01868805c0e51229e1ae3a12d3fb9437942f2e609ffe
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

30 lines
1.3 KiB
Plaintext

import { Assertions } from '../common/assertions';
import { Struct } from '../common/struct';
import { InfoContact } from '../common/info-contact';
import { InfoLicenseStrict } from '../common/info-license-strict';
import { OperationOperationId } from '../common/operation-operationId';
import { TagDescription } from '../common/tag-description';
import { TagsAlphabetical } from '../common/tags-alphabetical';
import { ChannelsKebabCase } from './channels-kebab-case';
import { NoChannelTrailingSlash } from './no-channel-trailing-slash';
import type { Async2Rule } from '../../visitors';
import type { Async2RuleSet } from '../../oas-types';
export const rules: Async2RuleSet<'built-in'> = {
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
//@ts-ignore TODO: This is depricated property `spec` and should be removed in the future
spec: Struct as Async2Rule,
struct: Struct as Async2Rule,
assertions: Assertions as Async2Rule,
'info-contact': InfoContact as Async2Rule,
'info-license-strict': InfoLicenseStrict as Async2Rule,
'operation-operationId': OperationOperationId as Async2Rule,
'channels-kebab-case': ChannelsKebabCase,
'no-channel-trailing-slash': NoChannelTrailingSlash,
'tag-description': TagDescription as Async2Rule,
'tags-alphabetical': TagsAlphabetical as Async2Rule,
};
export const preprocessors = {};