File tree Expand file tree Collapse file tree 4 files changed +15
-2
lines changed
Expand file tree Collapse file tree 4 files changed +15
-2
lines changed Original file line number Diff line number Diff line change 11## [ Unreleased]
22
3+ ## [ 0.7.0] - 2023-10-14
4+
5+ - New feature
6+ - ` YARD/MismatchName ` : Check undocumented argument.
7+
38## [ 0.6.0] - 2023-10-10
49
510- Split cop from ` YARD/TagType ` to
Original file line number Diff line number Diff line change 11PATH
22 remote: .
33 specs:
4- rubocop-yard (0.6 .0 )
4+ rubocop-yard (0.7 .0 )
55 rubocop
66 yard
77
Original file line number Diff line number Diff line change @@ -86,6 +86,14 @@ Check `@param` and `@option` name with method definition.
8686def foo (strings , opts = {})
8787```
8888
89+ Check undocumented argument.
90+
91+ ```
92+ # @param [String] strings
93+ ^^^^^^^^^^^^^^^^^^^^^^^^^ This method has argument `opts`, But not documented
94+ def foo(strings, opts = {})
95+ ```
96+
8997### ` YARD/MeaninglessTag `
9098
9199Check ` @param ` and ` @option ` with class/module or casgn
Original file line number Diff line number Diff line change 22
33module RuboCop
44 module YARD
5- VERSION = "0.6 .0"
5+ VERSION = "0.7 .0"
66 end
77end
You can’t perform that action at this time.
0 commit comments