From 604a3b2a20a9c80475d4699d2d722c42a3fa94ba Mon Sep 17 00:00:00 2001 From: Nicolas McCurdy Date: Sun, 5 Jan 2014 00:48:57 -0500 Subject: [PATCH] Add todo comments to the rubocop config --- .rubocop.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.rubocop.yml b/.rubocop.yml index b429de0..65c6cf8 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,6 +1,10 @@ -# This configuration was generated by `rubocop --auto-gen-config`. -# The point is for the user to remove these configuration records -# one by one as the offences are removed from the code base. +# TODO: Eval is required for the .homesickrc feature. This should eventually be +# removed if the feature is implemented in a more secure way. +Eval: + Enabled: false + +# TODO: The following settings disable reports about issues that can be fixed +# through refactoring. Remove these as offenses are removed from the code base. ClassLength: Enabled: false @@ -8,9 +12,6 @@ ClassLength: CyclomaticComplexity: Max: 16 -Eval: - Enabled: false - LineLength: Max: 174