@@ -7,7 +7,7 @@ class Parser::Source::Comment
77 include ::RuboCop ::Ext ::Comment
88end
99
10- class Parser ::Source ::Range # rubocop:todo Style/OneClassPerFile
10+ class Parser ::Source ::Range
1111 include ::RuboCop ::Ext ::Range
1212end
1313
@@ -17,7 +17,7 @@ RuboCop::CLI::STATUS_SUCCESS = T.let(T.unsafe(nil).freeze, Integer)
1717
1818RuboCop ::CommentConfig ::CONFIG_DISABLED_LINE_RANGE_MIN = T . let ( T . unsafe ( nil ) . freeze , Float )
1919
20- class RuboCop ::Config # rubocop:todo Style/OneClassPerFile
20+ class RuboCop ::Config
2121 include ::RuboCop ::PathUtil
2222 include ::RuboCop ::FileFinder
2323 extend ::RuboCop ::SimpleForwardable
3333
3434RuboCop ::Token = RuboCop ::AST ::Token
3535
36- class RuboCop ::Cop ::Base # rubocop:todo Style/OneClassPerFile
36+ class RuboCop ::Cop ::Base
3737 include ::RuboCop ::AST ::Sexp
3838 include ::RuboCop ::PathUtil
3939 include ::RuboCop ::Cop ::Util
@@ -49,17 +49,17 @@ class RuboCop::Cop::Base # rubocop:todo Style/OneClassPerFile
4949 def initialize ( config = T . unsafe ( nil ) , options = T . unsafe ( nil ) ) ; end
5050end
5151
52- class RuboCop ::Cop ::SomeUnusedCop < RuboCop ::Cop ::Base # rubocop:todo Style/OneClassPerFile
52+ class RuboCop ::Cop ::SomeUnusedCop < RuboCop ::Cop ::Base
5353 def on_send ( _node ) ; end
5454end
5555
56- module RuboCop ::Cop ::UnusedModule ; end # rubocop:todo Style/OneClassPerFile
56+ module RuboCop ::Cop ::UnusedModule ; end
5757
58- class CompletelyUnrelated # rubocop:todo Style/OneClassPerFile
58+ class CompletelyUnrelated
5959 def bananas ; end
6060end
6161
62- module RuboCop ::Version # rubocop:todo Style/OneClassPerFile
62+ module RuboCop ::Version
6363 class << self
6464 # @api private
6565 #
0 commit comments