Skip to content

Commit

Permalink
refactor(ls): remove unique option from apilintValueOrArray lint (#3708)
Browse files Browse the repository at this point in the history
Refs #3707
  • Loading branch information
char0n committed Jan 22, 2024
1 parent 16fbfca commit f32ee83
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const typeEqualsLint: LinterMeta = {
message: 'type must be one of allowed values',
severity: DiagnosticSeverity.Error,
linterFunction: 'apilintValueOrArray',
linterParams: [['boolean', 'object', 'array', 'number', 'string', 'integer'], true],
linterParams: [['boolean', 'object', 'array', 'number', 'string', 'integer']],
marker: 'value',
target: 'type',
data: {
Expand Down

0 comments on commit f32ee83

Please sign in to comment.