recommended
Baseline preset that enforces TSDoc comment presence with tsdoc-require-2/require.
What this preset is forâ
Use recommended when you need a low-friction starting point:
- enforce that API declarations are documented
- avoid immediate tag-level migration work
- establish a consistent baseline before adopting stricter tag policy
What this preset enablesâ
This preset only checks that comments exist. It does not require tags like @param or @returns, and it does not restrict tag vocabulary.
Config keyâ
tsdocRequire.configs.recommended
Flat Config exampleâ
import tsdocRequire from "eslint-plugin-tsdoc-require-2";
export default [tsdocRequire.configs.recommended];