Skip to content

Commit 41d1cac

Browse files
feat: adopt granular eslint-plugin-jsdoc configs (#1624)
## PR Checklist - [x] Addresses an existing open issue: fixes #1623 - [x] That issue was marked as [`status: accepting prs`](https://github.com/JoshuaKGoldberg/create-typescript-app/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22) - [x] Steps in [CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/create-typescript-app/blob/main/.github/CONTRIBUTING.md) were taken ## Overview Uses the configs instead of previous manual rule configurations. 💖
1 parent e0b78be commit 41d1cac

File tree

5 files changed

+25
-38
lines changed

5 files changed

+25
-38
lines changed

eslint.config.js

+3-6
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ export default tseslint.config(
4242
...yml.configs["flat/recommended"],
4343
...yml.configs["flat/prettier"],
4444
comments.recommended,
45-
jsdoc.configs["flat/recommended-typescript-error"],
45+
jsdoc.configs["flat/contents-typescript-error"],
46+
jsdoc.configs["flat/logical-typescript-error"],
47+
jsdoc.configs["flat/stylistic-typescript-error"],
4648
n.configs["flat/recommended"],
4749
packageJson,
4850
perfectionist.configs["recommended-natural"],
@@ -64,7 +66,6 @@ export default tseslint.config(
6466
},
6567
rules: {
6668
// These off-by-default rules work well for this repo and we like them on.
67-
"jsdoc/informative-docs": "error",
6869
"logical-assignment-operators": [
6970
"error",
7071
"always",
@@ -74,10 +75,6 @@ export default tseslint.config(
7475

7576
// These on-by-default rules don't work well for this repo and we like them off.
7677
"jsdoc/lines-before-block": "off",
77-
"jsdoc/require-jsdoc": "off",
78-
"jsdoc/require-param": "off",
79-
"jsdoc/require-property": "off",
80-
"jsdoc/require-returns": "off",
8178
"no-constant-condition": "off",
8279

8380
// These on-by-default rules work well for this repo if configured

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
"console-fail-test": "^0.4.4",
7777
"cspell": "^8.13.1",
7878
"eslint": "^9.8.0",
79-
"eslint-plugin-jsdoc": "^50.0.0",
79+
"eslint-plugin-jsdoc": "^50.2.1",
8080
"eslint-plugin-jsonc": "^2.16.0",
8181
"eslint-plugin-markdown": "^5.1.0",
8282
"eslint-plugin-n": "^17.10.2",

pnpm-lock.yaml

+14-14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/steps/writing/creation/createESLintConfig.test.ts

+3-6
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,9 @@ describe("createESLintConfig", () => {
142142
...yml.configs["flat/recommended"],
143143
...yml.configs["flat/prettier"],
144144
comments.recommended,
145-
jsdoc.configs["flat/recommended-typescript-error"],
145+
jsdoc.configs["flat/contents-typescript-error"],
146+
jsdoc.configs["flat/logical-typescript-error"],
147+
jsdoc.configs["flat/stylistic-typescript-error"],
146148
n.configs["flat/recommended"],
147149
packageJson,
148150
perfectionist.configs["recommended-natural"],
@@ -164,7 +166,6 @@ describe("createESLintConfig", () => {
164166
},
165167
rules: {
166168
// These off-by-default rules work well for this repo and we like them on.
167-
"jsdoc/informative-docs": "error",
168169
"logical-assignment-operators": [
169170
"error",
170171
"always",
@@ -174,10 +175,6 @@ describe("createESLintConfig", () => {
174175
175176
// These on-by-default rules don't work well for this repo and we like them off.
176177
"jsdoc/lines-before-block": "off",
177-
"jsdoc/require-jsdoc": "off",
178-
"jsdoc/require-param": "off",
179-
"jsdoc/require-property": "off",
180-
"jsdoc/require-returns": "off",
181178
"no-constant-condition": "off",
182179
183180
// These on-by-default rules work well for this repo if configured

src/steps/writing/creation/createESLintConfig.ts

+4-11
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ export async function createESLintConfig(options: Options) {
3232
!options.excludeLintYml && ` ...yml.configs["flat/prettier"],`,
3333
!options.excludeLintESLint && ` comments.recommended,`,
3434
!options.excludeLintJSDoc &&
35-
` jsdoc.configs["flat/recommended-typescript-error"],`,
35+
` jsdoc.configs["flat/contents-typescript-error"],
36+
jsdoc.configs["flat/logical-typescript-error"],
37+
jsdoc.configs["flat/stylistic-typescript-error"],`,
3638
` n.configs["flat/recommended"],`,
3739
!options.excludeLintPackageJson && ` packageJson,`,
3840
!options.excludeLintPerfectionist &&
@@ -86,11 +88,6 @@ export default tseslint.config(
8688
!options.excludeLintJSDoc || !options.excludeLintStylistic
8789
? "// These off-by-default rules work well for this repo and we like them on."
8890
: ""
89-
}${
90-
options.excludeLintJSDoc
91-
? ""
92-
: `
93-
"jsdoc/informative-docs": "error",`
9491
}${
9592
options.excludeLintStylistic
9693
? ""
@@ -107,11 +104,7 @@ export default tseslint.config(
107104
options.excludeLintJSDoc
108105
? ""
109106
: `
110-
"jsdoc/lines-before-block": "off",
111-
"jsdoc/require-jsdoc": "off",
112-
"jsdoc/require-param": "off",
113-
"jsdoc/require-property": "off",
114-
"jsdoc/require-returns": "off",`
107+
"jsdoc/lines-before-block": "off",`
115108
}
116109
"no-constant-condition": "off",
117110

0 commit comments

Comments
 (0)