From 32466ee89e211799780c2454a3491fd252863ae1 Mon Sep 17 00:00:00 2001 From: Eric Eastwood Date: Mon, 20 Nov 2017 22:58:40 -0600 Subject: Update rubocop AccessorMethodName to use Naming department Updated in 0.50.0 (2017-09-14) via https://github.com/Drenmi/rubocop/commit/b4ce237164efdb26531f53dcc5229f1ebb54b00c rubocop changelog, https://github.com/bbatsov/rubocop/blob/master/CHANGELOG.md#0500-2017-09-14 Fix error thrown by linter-rubocop in Atom ``` Error running RuboCop Error: .rubocop.yml: Style/AsciiIdentifiers has the wrong namespace - should be Naming ``` --- .rubocop.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.rubocop.yml b/.rubocop.yml index c427f219a0d..483a4a2d16b 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -258,7 +258,7 @@ Layout/TrailingWhitespace: # Style ####################################################################### # Check the naming of accessor methods for get_/set_. -Style/AccessorMethodName: +Naming/AccessorMethodName: Enabled: false # Use alias_method instead of alias. -- cgit v1.2.1