From 63b1537040f16bcc8e2a86f6551fac4c88a92375 Mon Sep 17 00:00:00 2001 From: epaew Date: Sat, 10 Apr 2021 10:41:09 +0900 Subject: [PATCH] Run `rubocop --auto-gen-config` --- .rubocop.yml | 2 ++ .rubocop_todo.yml | 15 +++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 .rubocop_todo.yml diff --git a/.rubocop.yml b/.rubocop.yml index 8abb988..1f6324e 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,4 +1,6 @@ --- +inherit_from: .rubocop_todo.yml + require: - rubocop-performance - rubocop-rake diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml new file mode 100644 index 0000000..2c19889 --- /dev/null +++ b/.rubocop_todo.yml @@ -0,0 +1,15 @@ +# This configuration was generated by +# `rubocop --auto-gen-config` +# on 2021-04-10 01:40:27 UTC using RuboCop version 1.12.1. +# The point is for the user to remove these configuration records +# one by one as the offenses are removed from the code base. +# Note that changes in the inspected code, or installation of new +# versions of RuboCop, may require this file to be generated again. + +# Offense count: 1 +# Configuration parameters: AllowedConstants. +Style/Documentation: + Exclude: + - 'spec/**/*' + - 'test/**/*' + - 'lib/deep_compact.rb'