[Fix #5887] Remove `Lint/SplatKeywordArguments` cop by koic · Pull Request #5892 · rubocop/rubocop
Closes #5887. This PR removes Lint/SplatKeywordArguments cop. The following is an example from #5887. options = { opt1: 1, opt2: 2 } def method1(kw_args); end def method2(**kw_args); end method1(...