We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5253623 commit 3e18eefCopy full SHA for 3e18eef
.rubocop.yml
@@ -65,6 +65,12 @@ Style/SingleLineBlockParams:
65
Style/PerlBackrefs:
66
Enabled: false
67
68
+# Tried to disable in the file itself but this style rubocop was not there in
69
+# ruby 2.0, so it threw Lint/UnneededDisable rubocop offence.
70
+Style/MixinUsage:
71
+ Exclude:
72
+ - 'lib/daru/view/plot_list.rb'
73
+
74
Layout/SpaceAfterComma:
75
76
lib/daru/view/plot_list.rb
@@ -4,9 +4,8 @@
4
require 'daru/view/adapters/googlecharts/display'
5
6
# Otherwise Daru::IRuby module was used and IRuby.html method was not working.
7
-# rubocop:disable Style/MixinUsage
8
include IRuby::Utils if defined?(IRuby)
9
-# rubocop:enable Style/MixinUsage
10
11
module Daru
12
module View
0 commit comments