Skip to content

Commit bd6bbc2

Browse files
fix(deps): update dependency eslint-plugin-jsdoc to v62 (#426)
* fix(deps): update dependency eslint-plugin-jsdoc to v62 * fix(deps): update dependency eslint-plugin-jsdoc to v62 * chore: update snapshot --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: wakamsha <wakamsha@gmail.com>
1 parent 747cd16 commit bd6bbc2

File tree

6 files changed

+363
-64
lines changed

6 files changed

+363
-64
lines changed

packages/eslint-config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"eslint-plugin-import": "2.31.0",
5757
"eslint-plugin-jest": "28.9.0",
5858
"eslint-plugin-jest-dom": "5.5.0",
59-
"eslint-plugin-jsdoc": "50.6.0",
59+
"eslint-plugin-jsdoc": "62.9.0",
6060
"eslint-plugin-jsx-a11y": "6.10.2",
6161
"eslint-plugin-n": "17.14.0",
6262
"eslint-plugin-promise": "7.2.1",

packages/eslint-config/tests/snapshot-test/eslintrc/next/__snapshots__/snapshot.test.js.snap

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -803,6 +803,9 @@ exports[`should match ESLint configuration snapshot: next 1`] = `
803803
"jsdoc/empty-tags": [
804804
2,
805805
],
806+
"jsdoc/escape-inline-tags": [
807+
2,
808+
],
806809
"jsdoc/implements-on-classes": [
807810
2,
808811
],
@@ -851,6 +854,15 @@ exports[`should match ESLint configuration snapshot: next 1`] = `
851854
"jsdoc/no-undefined-types": [
852855
0,
853856
],
857+
"jsdoc/prefer-import-tag": [
858+
0,
859+
],
860+
"jsdoc/reject-any-type": [
861+
2,
862+
],
863+
"jsdoc/reject-function-type": [
864+
2,
865+
],
854866
"jsdoc/require-asterisk-prefix": [
855867
0,
856868
],
@@ -892,6 +904,7 @@ exports[`should match ESLint configuration snapshot: next 1`] = `
892904
"jsdoc/require-jsdoc": [
893905
2,
894906
{
907+
"checkAllFunctionExpressions": false,
895908
"checkConstructors": false,
896909
"checkGetters": true,
897910
"checkSetters": true,
@@ -906,6 +919,7 @@ exports[`should match ESLint configuration snapshot: next 1`] = `
906919
"enableFixer": true,
907920
"exemptEmptyConstructors": false,
908921
"exemptEmptyFunctions": false,
922+
"exemptOverloadedImplementations": false,
909923
"fixerMessage": "",
910924
"publicOnly": true,
911925
"require": {
@@ -916,8 +930,15 @@ exports[`should match ESLint configuration snapshot: next 1`] = `
916930
"FunctionExpression": true,
917931
"MethodDefinition": true,
918932
},
933+
"skipInterveningOverloadedDeclarations": true,
919934
},
920935
],
936+
"jsdoc/require-next-description": [
937+
0,
938+
],
939+
"jsdoc/require-next-type": [
940+
2,
941+
],
921942
"jsdoc/require-param": [
922943
2,
923944
{
@@ -951,6 +972,9 @@ exports[`should match ESLint configuration snapshot: next 1`] = `
951972
"jsdoc/require-property-type": [
952973
0,
953974
],
975+
"jsdoc/require-rejects": [
976+
0,
977+
],
954978
"jsdoc/require-returns": [
955979
0,
956980
],
@@ -963,18 +987,36 @@ exports[`should match ESLint configuration snapshot: next 1`] = `
963987
"jsdoc/require-returns-type": [
964988
0,
965989
],
990+
"jsdoc/require-tags": [
991+
0,
992+
],
966993
"jsdoc/require-template": [
967994
0,
968995
],
996+
"jsdoc/require-template-description": [
997+
0,
998+
],
969999
"jsdoc/require-throws": [
9701000
0,
9711001
],
1002+
"jsdoc/require-throws-description": [
1003+
0,
1004+
],
1005+
"jsdoc/require-throws-type": [
1006+
2,
1007+
],
9721008
"jsdoc/require-yields": [
9731009
2,
9741010
],
9751011
"jsdoc/require-yields-check": [
9761012
2,
9771013
],
1014+
"jsdoc/require-yields-description": [
1015+
0,
1016+
],
1017+
"jsdoc/require-yields-type": [
1018+
2,
1019+
],
9781020
"jsdoc/sort-tags": [
9791021
2,
9801022
{
@@ -992,6 +1034,21 @@ exports[`should match ESLint configuration snapshot: next 1`] = `
9921034
"jsdoc/text-escaping": [
9931035
0,
9941036
],
1037+
"jsdoc/ts-method-signature-style": [
1038+
0,
1039+
],
1040+
"jsdoc/ts-no-empty-object-type": [
1041+
2,
1042+
],
1043+
"jsdoc/ts-no-unnecessary-template-expression": [
1044+
0,
1045+
],
1046+
"jsdoc/ts-prefer-function-type": [
1047+
0,
1048+
],
1049+
"jsdoc/type-formatting": [
1050+
0,
1051+
],
9951052
"jsdoc/valid-types": [
9961053
2,
9971054
],

packages/eslint-config/tests/snapshot-test/eslintrc/react/__snapshots__/snapshot.test.js.snap

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -740,6 +740,9 @@ exports[`should match ESLint configuration snapshot: react 1`] = `
740740
"jsdoc/empty-tags": [
741741
2,
742742
],
743+
"jsdoc/escape-inline-tags": [
744+
2,
745+
],
743746
"jsdoc/implements-on-classes": [
744747
2,
745748
],
@@ -788,6 +791,15 @@ exports[`should match ESLint configuration snapshot: react 1`] = `
788791
"jsdoc/no-undefined-types": [
789792
0,
790793
],
794+
"jsdoc/prefer-import-tag": [
795+
0,
796+
],
797+
"jsdoc/reject-any-type": [
798+
2,
799+
],
800+
"jsdoc/reject-function-type": [
801+
2,
802+
],
791803
"jsdoc/require-asterisk-prefix": [
792804
0,
793805
],
@@ -829,6 +841,7 @@ exports[`should match ESLint configuration snapshot: react 1`] = `
829841
"jsdoc/require-jsdoc": [
830842
2,
831843
{
844+
"checkAllFunctionExpressions": false,
832845
"checkConstructors": false,
833846
"checkGetters": true,
834847
"checkSetters": true,
@@ -843,6 +856,7 @@ exports[`should match ESLint configuration snapshot: react 1`] = `
843856
"enableFixer": true,
844857
"exemptEmptyConstructors": false,
845858
"exemptEmptyFunctions": false,
859+
"exemptOverloadedImplementations": false,
846860
"fixerMessage": "",
847861
"publicOnly": true,
848862
"require": {
@@ -853,8 +867,15 @@ exports[`should match ESLint configuration snapshot: react 1`] = `
853867
"FunctionExpression": true,
854868
"MethodDefinition": true,
855869
},
870+
"skipInterveningOverloadedDeclarations": true,
856871
},
857872
],
873+
"jsdoc/require-next-description": [
874+
0,
875+
],
876+
"jsdoc/require-next-type": [
877+
2,
878+
],
858879
"jsdoc/require-param": [
859880
2,
860881
{
@@ -888,6 +909,9 @@ exports[`should match ESLint configuration snapshot: react 1`] = `
888909
"jsdoc/require-property-type": [
889910
0,
890911
],
912+
"jsdoc/require-rejects": [
913+
0,
914+
],
891915
"jsdoc/require-returns": [
892916
0,
893917
],
@@ -900,18 +924,36 @@ exports[`should match ESLint configuration snapshot: react 1`] = `
900924
"jsdoc/require-returns-type": [
901925
0,
902926
],
927+
"jsdoc/require-tags": [
928+
0,
929+
],
903930
"jsdoc/require-template": [
904931
0,
905932
],
933+
"jsdoc/require-template-description": [
934+
0,
935+
],
906936
"jsdoc/require-throws": [
907937
0,
908938
],
939+
"jsdoc/require-throws-description": [
940+
0,
941+
],
942+
"jsdoc/require-throws-type": [
943+
2,
944+
],
909945
"jsdoc/require-yields": [
910946
2,
911947
],
912948
"jsdoc/require-yields-check": [
913949
2,
914950
],
951+
"jsdoc/require-yields-description": [
952+
0,
953+
],
954+
"jsdoc/require-yields-type": [
955+
2,
956+
],
915957
"jsdoc/sort-tags": [
916958
2,
917959
{
@@ -929,6 +971,21 @@ exports[`should match ESLint configuration snapshot: react 1`] = `
929971
"jsdoc/text-escaping": [
930972
0,
931973
],
974+
"jsdoc/ts-method-signature-style": [
975+
0,
976+
],
977+
"jsdoc/ts-no-empty-object-type": [
978+
2,
979+
],
980+
"jsdoc/ts-no-unnecessary-template-expression": [
981+
0,
982+
],
983+
"jsdoc/ts-prefer-function-type": [
984+
0,
985+
],
986+
"jsdoc/type-formatting": [
987+
0,
988+
],
932989
"jsdoc/valid-types": [
933990
2,
934991
],

packages/eslint-config/tests/snapshot-test/flat/next/__snapshots__/snapshot.test.js.snap

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -934,6 +934,9 @@ exports[`ESLint Configuration Snapshot Tests should match ESLint Flat Configurat
934934
"jsdoc/empty-tags": [
935935
2,
936936
],
937+
"jsdoc/escape-inline-tags": [
938+
2,
939+
],
937940
"jsdoc/implements-on-classes": [
938941
2,
939942
],
@@ -982,6 +985,15 @@ exports[`ESLint Configuration Snapshot Tests should match ESLint Flat Configurat
982985
"jsdoc/no-undefined-types": [
983986
0,
984987
],
988+
"jsdoc/prefer-import-tag": [
989+
0,
990+
],
991+
"jsdoc/reject-any-type": [
992+
2,
993+
],
994+
"jsdoc/reject-function-type": [
995+
2,
996+
],
985997
"jsdoc/require-asterisk-prefix": [
986998
0,
987999
],
@@ -1023,6 +1035,7 @@ exports[`ESLint Configuration Snapshot Tests should match ESLint Flat Configurat
10231035
"jsdoc/require-jsdoc": [
10241036
2,
10251037
{
1038+
"checkAllFunctionExpressions": false,
10261039
"checkConstructors": false,
10271040
"checkGetters": true,
10281041
"checkSetters": true,
@@ -1037,6 +1050,7 @@ exports[`ESLint Configuration Snapshot Tests should match ESLint Flat Configurat
10371050
"enableFixer": true,
10381051
"exemptEmptyConstructors": false,
10391052
"exemptEmptyFunctions": false,
1053+
"exemptOverloadedImplementations": false,
10401054
"fixerMessage": "",
10411055
"publicOnly": true,
10421056
"require": {
@@ -1047,8 +1061,15 @@ exports[`ESLint Configuration Snapshot Tests should match ESLint Flat Configurat
10471061
"FunctionExpression": true,
10481062
"MethodDefinition": true,
10491063
},
1064+
"skipInterveningOverloadedDeclarations": true,
10501065
},
10511066
],
1067+
"jsdoc/require-next-description": [
1068+
0,
1069+
],
1070+
"jsdoc/require-next-type": [
1071+
2,
1072+
],
10521073
"jsdoc/require-param": [
10531074
2,
10541075
{
@@ -1082,6 +1103,9 @@ exports[`ESLint Configuration Snapshot Tests should match ESLint Flat Configurat
10821103
"jsdoc/require-property-type": [
10831104
0,
10841105
],
1106+
"jsdoc/require-rejects": [
1107+
0,
1108+
],
10851109
"jsdoc/require-returns": [
10861110
0,
10871111
],
@@ -1094,18 +1118,36 @@ exports[`ESLint Configuration Snapshot Tests should match ESLint Flat Configurat
10941118
"jsdoc/require-returns-type": [
10951119
0,
10961120
],
1121+
"jsdoc/require-tags": [
1122+
0,
1123+
],
10971124
"jsdoc/require-template": [
10981125
0,
10991126
],
1127+
"jsdoc/require-template-description": [
1128+
0,
1129+
],
11001130
"jsdoc/require-throws": [
11011131
0,
11021132
],
1133+
"jsdoc/require-throws-description": [
1134+
0,
1135+
],
1136+
"jsdoc/require-throws-type": [
1137+
2,
1138+
],
11031139
"jsdoc/require-yields": [
11041140
2,
11051141
],
11061142
"jsdoc/require-yields-check": [
11071143
2,
11081144
],
1145+
"jsdoc/require-yields-description": [
1146+
0,
1147+
],
1148+
"jsdoc/require-yields-type": [
1149+
2,
1150+
],
11091151
"jsdoc/sort-tags": [
11101152
2,
11111153
{
@@ -1123,6 +1165,21 @@ exports[`ESLint Configuration Snapshot Tests should match ESLint Flat Configurat
11231165
"jsdoc/text-escaping": [
11241166
0,
11251167
],
1168+
"jsdoc/ts-method-signature-style": [
1169+
0,
1170+
],
1171+
"jsdoc/ts-no-empty-object-type": [
1172+
2,
1173+
],
1174+
"jsdoc/ts-no-unnecessary-template-expression": [
1175+
0,
1176+
],
1177+
"jsdoc/ts-prefer-function-type": [
1178+
0,
1179+
],
1180+
"jsdoc/type-formatting": [
1181+
0,
1182+
],
11261183
"jsdoc/valid-types": [
11271184
2,
11281185
],

0 commit comments

Comments
 (0)