eslint-plugin-jsdoc 39.6.2 → 39.6.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +10 -0
  2. package/package.json +10 -10
package/README.md CHANGED
@@ -18382,6 +18382,16 @@ const getTSFunctionComment = function (astNode) {
18382
18382
  return astNode;
18383
18383
  }
18384
18384
  };
18385
+
18386
+ const f =
18387
+ /**
18388
+ * Description.
18389
+ *
18390
+ * @returns Result.
18391
+ */
18392
+ () => {
18393
+ return function () {};
18394
+ };
18385
18395
  ````
18386
18396
 
18387
18397
 
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "url": "http://gajus.com"
6
6
  },
7
7
  "dependencies": {
8
- "@es-joy/jsdoccomment": "~0.36.0",
8
+ "@es-joy/jsdoccomment": "~0.36.1",
9
9
  "comment-parser": "1.3.1",
10
10
  "debug": "^4.3.4",
11
11
  "escape-string-regexp": "^4.0.0",
@@ -16,27 +16,27 @@
16
16
  "description": "JSDoc linting rules for ESLint.",
17
17
  "devDependencies": {
18
18
  "@babel/cli": "^7.19.3",
19
- "@babel/core": "^7.19.6",
19
+ "@babel/core": "^7.20.2",
20
20
  "@babel/eslint-parser": "^7.19.1",
21
- "@babel/node": "^7.20.0",
21
+ "@babel/node": "^7.20.2",
22
22
  "@babel/plugin-syntax-class-properties": "^7.12.13",
23
23
  "@babel/plugin-transform-flow-strip-types": "^7.19.0",
24
- "@babel/preset-env": "^7.19.4",
24
+ "@babel/preset-env": "^7.20.2",
25
25
  "@babel/register": "^7.18.9",
26
26
  "@es-joy/jsdoc-eslint-parser": "^0.17.0",
27
27
  "@hkdobrev/run-if-changed": "^0.3.1",
28
- "@typescript-eslint/parser": "^5.42.0",
28
+ "@typescript-eslint/parser": "^5.44.0",
29
29
  "babel-plugin-add-module-exports": "^1.0.4",
30
30
  "babel-plugin-istanbul": "^6.1.1",
31
31
  "camelcase": "^6.3.0",
32
- "chai": "^4.3.6",
32
+ "chai": "^4.3.7",
33
33
  "cross-env": "^7.0.3",
34
34
  "decamelize": "^5.0.1",
35
- "eslint": "^8.26.0",
35
+ "eslint": "^8.28.0",
36
36
  "eslint-config-canonical": "~33.0.1",
37
37
  "gitdown": "^3.1.5",
38
38
  "glob": "^8.0.3",
39
- "husky": "^8.0.1",
39
+ "husky": "^8.0.2",
40
40
  "jsdoc-type-pratt-parser": "^3.1.0",
41
41
  "lint-staged": "^13.0.3",
42
42
  "lodash.defaultsdeep": "^4.6.1",
@@ -45,7 +45,7 @@
45
45
  "open-editor": "^3.0.0",
46
46
  "rimraf": "^3.0.2",
47
47
  "semantic-release": "^19.0.5",
48
- "typescript": "^4.8.4"
48
+ "typescript": "^4.9.3"
49
49
  },
50
50
  "engines": {
51
51
  "node": "^14 || ^16 || ^17 || ^18 || ^19"
@@ -117,5 +117,5 @@
117
117
  "test-cov": "cross-env TIMING=1 nyc --reporter text npm run test-no-cov",
118
118
  "test-index": "npm run test-no-cov -- test/rules/index.js"
119
119
  },
120
- "version": "39.6.2"
120
+ "version": "39.6.3"
121
121
  }