12 lines
476 B
TypeScript
12 lines
476 B
TypeScript
import { JSONSchema4 } from '@typescript-eslint/utils/json-schema'
|
|
/**
|
|
* JSON schema for the partition by comment option. Validates configuration for
|
|
* splitting elements into partitions based on comments.
|
|
*/
|
|
export declare let partitionByCommentJsonSchema: JSONSchema4
|
|
/**
|
|
* JSON schema for the partition by new line option. Controls whether to create
|
|
* separate partitions when newlines are encountered.
|
|
*/
|
|
export declare let partitionByNewLineJsonSchema: JSONSchema4
|