config/default.yml in rubocop-on-rbs-1.2.0 vs config/default.yml in rubocop-on-rbs-1.3.0

- old
+ new

@@ -69,10 +69,14 @@ RBS/Layout/OverloadIndentation: Description: 'Indent overload method' Enabled: true +RBS/Layout/SpaceAfterComma: + Description: 'Use space after `,`' + Enabled: true + RBS/Layout/SpaceAroundArrow: Description: 'Use space around `->`' Enabled: true RBS/Layout/SpaceAroundBraces: @@ -99,10 +103,14 @@ RBS/Lint: Severity: warning Enabled: true +RBS/Lint/AmbiguousKeywordArgumentKey: + Description: 'Check ambiguous keyword argument key' + Enabled: true + RBS/Lint/AmbiguousOperatorPrecedence: Description: 'Check ambiguous operator precedence' Enabled: true RBS/Lint/DuplicateOverload: @@ -131,14 +139,18 @@ RBS/Lint/UselessAccessModifier: AutoCorrect: contextual Description: 'Check useless access modifier' Enabled: true -RBS/Lint/UselessOverloadTypeParams: +RBS/Lint/UnusedOverloadTypeParams: Description: 'Check redundant overload type params' Enabled: true +RBS/Lint/UnusedTypeAliasTypeParams: + Description: 'Check redundant type alias type params' + Enabled: true + RBS/Lint/WillSyntaxError: Description: 'Check RBS will syntax error' Enabled: true ## RBS/Style @@ -148,10 +160,14 @@ RBS/Style/BlockReturnBoolish: Description: 'Use `bool` for block return type' Enabled: true +RBS/Style/ClassWithSingleton: + Description: 'Check `class` with singleton context' + Enabled: pending + RBS/Style/ClassicType: Description: 'Use simple type' Enabled: true RBS/Style/DuplicatedType: @@ -163,9 +179,13 @@ Enabled: true RBS/Style/InitializeReturnType: Description: 'Use `void` for initialize method' Enabled: true + +RBS/Style/InstanceWithInstance: + Description: 'Check `instance` with instance context' + Enabled: pending RBS/Style/OptionalNil: Description: 'Use nil instead of nil?' Enabled: true