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