Skip to content

Commit d11d271

Browse files
committedMar 28, 2022
fix(check-types): for jsdoc mode, avoid objecting to upper-case; fixes #860
1 parent 0f27282 commit d11d271

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed
 

‎README.md

+11
Original file line numberDiff line numberDiff line change
@@ -5883,6 +5883,17 @@ function a () {}
58835883
*/
58845884
function a () {}
58855885
// Settings: {"jsdoc":{"mode":"typescript","preferredTypes":{"Object":"object","object.<>":"Object<>","object<>":"Object<>"}}}
5886+
5887+
/**
5888+
* Does something.
5889+
*
5890+
* @param {Object<string,string>} spec - Foo.
5891+
*/
5892+
function foo(spec) {
5893+
return spec;
5894+
}
5895+
5896+
foo()
58865897
````
58875898

58885899

‎src/rules/checkTypes.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -196,8 +196,7 @@ export default iterateJsdoc(({
196196
let changedPreferred = preferred;
197197
for (const strictNativeType of strictNativeTypes) {
198198
if (
199-
// Todo: Avoid typescript condition if moving to default typescript
200-
strictNativeType === 'object' && mode === 'typescript' &&
199+
strictNativeType === 'object' &&
201200
(
202201
// This is not set to remap with exact type match (e.g.,
203202
// `object: 'Object'`), so can ignore (including if circular)

‎test/rules/assertions/checkTypes.js

+14
Original file line numberDiff line numberDiff line change
@@ -3003,5 +3003,19 @@ export default {
30033003
},
30043004
},
30053005
},
3006+
{
3007+
code: `
3008+
/**
3009+
* Does something.
3010+
*
3011+
* @param {Object<string,string>} spec - Foo.
3012+
*/
3013+
function foo(spec) {
3014+
return spec;
3015+
}
3016+
3017+
foo()
3018+
`,
3019+
},
30063020
],
30073021
};

0 commit comments

Comments
 (0)
Please sign in to comment.