File tree Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change @@ -220,6 +220,20 @@ export default iterateJsdoc(({
220
220
iterateAllJsdocs : true ,
221
221
meta : {
222
222
fixable : 'code' ,
223
+ schema : [
224
+ {
225
+ additionalProperties : false ,
226
+ properties : {
227
+ noDefaults : {
228
+ type : 'boolean'
229
+ } ,
230
+ unifyParentAndChildTypeChecks : {
231
+ type : 'boolean'
232
+ }
233
+ } ,
234
+ type : 'object'
235
+ }
236
+ ] ,
223
237
type : 'suggestion'
224
238
}
225
239
} ) ;
Original file line number Diff line number Diff line change @@ -131,6 +131,23 @@ export default iterateJsdoc(({
131
131
} ) ;
132
132
} , {
133
133
meta : {
134
+ schema : [
135
+ {
136
+ additionalProperties : false ,
137
+ properties : {
138
+ definedTypes : {
139
+ items : {
140
+ type : 'string'
141
+ } ,
142
+ type : 'array'
143
+ } ,
144
+ preferredTypesDefined : {
145
+ type : 'boolean'
146
+ }
147
+ } ,
148
+ type : 'object'
149
+ }
150
+ ] ,
134
151
type : 'suggestion'
135
152
}
136
153
} ) ;
You can’t perform that action at this time.
0 commit comments