Tools & CLIs that are useful for projects. #3
Replies: 3 comments 2 replies
-
Test / linting
Useful conversion tools
|
Beta Was this translation helpful? Give feedback.
-
Another really good tool:
And when it comes to linting:
|
Beta Was this translation helpful? Give feedback.
-
What is the status of linting JSDoc comments with I see there is open discussion regarding supporting more features inside comments. Currently, I have personal config with |
Beta Was this translation helpful? Give feedback.
-
There are various tools that are useful for working with jsdoc.
Here's an overview of some that I know of, and it would be great if this list can be expanded upon
typescript
/tsc
; you need this.type-coverage
; Thetype-coverage
command helps you identify if your project is 50%, 90% or 99% statically typed and it can let you know which JS statements require extra JSDoc annotations.eslint
; The eslint project along with typescript-eslint has useful rules for JSDoc projects.There are some more opinionated tools that can streamline some steps
tsdocstandard
; This rolls up a bunch of eslint plugins / rules and helps you with JSDoc annotationsBeta Was this translation helpful? Give feedback.
All reactions