Fix eslint not linting our custom eslint rules

This commit is contained in:
Matt Bierner
2025-03-19 22:49:06 -07:00
parent 79abfa3cef
commit 6b3e9f6759
16 changed files with 38 additions and 29 deletions

View File

@@ -16,13 +16,13 @@ export = new class implements eslint.Rule.RuleModule {
layerbreaker: 'You are only allowed to import {{import}} from here using `import type ...`.'
},
schema: {
type: "array",
type: 'array',
items: {
type: "object",
type: 'object',
additionalProperties: {
type: "array",
type: 'array',
items: {
type: "string"
type: 'string'
}
}
}