From cbcb6949c1ddd902ff2bae66c240e96a0acb02c9 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Fri, 25 Jul 2014 11:00:29 +0100 Subject: [PATCH] Add .rubocop.yml --- install.sh | 1 + rubocop.yml | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 rubocop.yml diff --git a/install.sh b/install.sh index dca2df6..cc7be83 100755 --- a/install.sh +++ b/install.sh @@ -20,6 +20,7 @@ SYMLINKS=( \ irbrc \ powconfig \ rspec \ + rubocop.yml \ tmux \ tmux.conf \ ) diff --git a/rubocop.yml b/rubocop.yml new file mode 100644 index 0000000..4a96b07 --- /dev/null +++ b/rubocop.yml @@ -0,0 +1,12 @@ +Style/AlignParameters: + EnforcedStyle: with_fixed_indentation + +Style/HashSyntax: + EnforcedStyle: hash_rockets + +Style/IndentHash: + EnforcedStyle: consistent + +Style/LineLength: + Max: 78 + AllowURI: true