我已经在 Rails 代码库中安装了 Sorbet,并且看到许多出现以下错误的实例:
sorbet/rbi/sorbet-typed/lib/activerecord/all/activerecord.rbi:958:
Method ActiveRecord::ConnectionAdapters::TableDefinition#column redefined without matching argument count. Expected: 3, got: 5 https://srb.help/4010
958 | def column(
959 | name,
960 | type,
961 | index: nil,
962 | default: nil,
963 | **options
964 | ); end
sorbet/rbi/gems/activerecord.rbi:5256: Previous definition
5256 | def column(name, type, **options); end
为了使类型错误消失,我要么必须更改typed: true
为typed: false
其中一个文件(其中不包括一些不重叠的类型),要么我必须手动进入并删除/注释掉重叠的方法(其中耗时且易碎)。
我想知道是否有某种编程解决方案,我可以说“在发生冲突的情况下,使用具有更高数量的方法”或“始终选择冰糕类型的定义”。
同样,这是在 Rails 代码库中,但我想这将存在于手动生成和自动生成的 RBI 之间的任何冲突。