From fc259b7e307900359f2b5ad2dc444cbb669b0d55 Mon Sep 17 00:00:00 2001 From: Mateus Rambo Strey <mars11@inf.ufpr.br> Date: Tue, 5 Apr 2016 10:01:18 -0300 Subject: [PATCH] add rubocop config file --- .rubocop.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .rubocop.yml diff --git a/.rubocop.yml b/.rubocop.yml new file mode 100644 index 00000000..33defbcb --- /dev/null +++ b/.rubocop.yml @@ -0,0 +1,12 @@ +Rails: + Enabled: true + +AllCops: + Include: + - '**/Rakefile' + - '**/config.ru' + Exclude: + - 'db/**/*' + +Metrics/LineLength: + Enabled: false -- GitLab