Clean up JSDoc (#327)

* Convert comments to JSDoc

* Clean JSdoc

* nit

* Clean up all JSDoc & ESLint warnings

Disables max-len for now
Removes redundant JSDoc tags (empty, same name, wrong name, etc)
This commit is contained in:
filtered
2024-11-22 02:11:53 +11:00
committed by GitHub
parent 0263704c6c
commit f79133659f
13 changed files with 359 additions and 392 deletions

View File

@@ -66,8 +66,14 @@ export default tseslint.config(
// "@typescript-eslint/no-unsafe-function-type": "off",
"@stylistic/max-len": [
"warn",
{ code: 100, comments: 130, ignoreStrings: true },
"off",
{
code: 100,
comments: 130,
ignoreStrings: true,
ignoreTemplateLiterals: true,
ignoreComments: true,
},
],
// "@stylistic/multiline-comment-style": ["warn", "starred-block"],