Files
routie/frontend/node_modules/eslint-plugin-perfectionist/dist/utils/json-schemas/scoped-regex-json-schema.js
T

12 lines
319 B
JavaScript

import { buildRegexJsonSchema } from './common-json-schemas.js'
import { regexScopes } from '../../types/scoped-regex-option.js'
var scopedRegexJsonSchema = buildRegexJsonSchema({
additionalProperties: {
scope: {
enum: [...regexScopes],
type: 'string',
},
},
})
export { scopedRegexJsonSchema }