Skip to content

Commit

Permalink
Disable TSDoc lint for JavaScript files
Browse files Browse the repository at this point in the history
It's not supported:
microsoft/tsdoc#23 (comment)
  • Loading branch information
mklein994 committed Jul 8, 2023
1 parent a6361c4 commit 0cd6b6f
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,13 @@
"vue/component-api-style": ["error", ["script-setup"]],
"vue/define-macros-order": "warn",
"tsdoc/syntax": "warn"
}
},
"overrides": [
{
"files": ["**/*.{,c,m}js"],
"rules": {
"tsdoc/syntax": "off"
}
}
]
}

0 comments on commit 0cd6b6f

Please sign in to comment.