From faff0285f52f13884506f0a134d0851115e8c9ba Mon Sep 17 00:00:00 2001 From: "Abinoam P. Marques Jr" Date: Fri, 3 Jun 2016 02:32:28 -0300 Subject: Add .rubocop.yml to tweak pronto-rubocop behavior --- .rubocop.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .rubocop.yml (limited to '.rubocop.yml') diff --git a/.rubocop.yml b/.rubocop.yml new file mode 100644 index 0000000..898f418 --- /dev/null +++ b/.rubocop.yml @@ -0,0 +1,31 @@ +# Bellow the changes to default Rubocop behavior. + +# See options at: +# https://github.com/bbatsov/rubocop/tree/master/config + +# General + +# Multi-line method chaining should be done with leading dots. +Style/DotPosition: + EnforcedStyle: trailing + SupportedStyles: + - leading + - trailing + +# Enabling! + +Style/CollectionMethods: + Description: 'Preferred collection methods.' + StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#map-find-select-reduce-size' + Enabled: true + +Style/StringMethods: + Description: 'Checks if configured preferred methods are used over non-preferred.' + Enabled: true + +# Disabling! + +Style/StringLiterals: + Description: 'Checks if uses of quotes match the configured preference.' + StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#consistent-string-literals' + Enabled: false -- cgit v1.2.1