.rubocop.yml in rutl-0.3.0 vs .rubocop.yml in rutl-0.4.0
- old
+ new
@@ -40,5 +40,12 @@
# And BasePage does @@loaded_pages.
Style/ClassVars:
Exclude:
- 'lib/rutl/driver/null_driver_page_element.rb'
- 'lib/rutl/base_page.rb'
+
+# Rubocop flags lots of things as useless assignment when they're actually
+# magic methods. Maybe this means I'm not handling respond_to_missing
+# correctly. In fact, that seems likely.
+Lint/UselessAssignment:
+ Exclude:
+ - 'spec/*_spec.rb'