Skip to content

Commit a6ceaaa

Browse files
authored
disallowedAttributes: configure errorIdentifier and errorTip as optional (#229)
Gave a test run of some disallowed attributes on properties after #225, noticed errorIdentifier and errorTip are considered mandatory but I'm guessing it was not intended in #222.
2 parents 240a2b5 + e4c2297 commit a6ceaaa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

extension.neon

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,8 +200,8 @@ parametersSchema:
200200
?disallowParamFlags: arrayOf(anyOf(int(), structure([position: int(), ?value: int(), ?name: string()])), anyOf(int(), string())),
201201
?allowExceptCaseInsensitiveParams: arrayOf(anyOf(int(), string(), bool(), structure([position: int(), ?value: anyOf(int(), string(), bool()), ?name: string()])), anyOf(int(), string())),
202202
?disallowCaseInsensitiveParams: arrayOf(anyOf(int(), string(), bool(), structure([position: int(), ?value: anyOf(int(), string(), bool()), ?name: string()])), anyOf(int(), string())),
203-
errorIdentifier: string(),
204-
errorTip: string(),
203+
?errorIdentifier: string(),
204+
?errorTip: string(),
205205
])
206206
)
207207

0 commit comments

Comments
 (0)