From b56a16d2f8643fbd5562999df8cd88048c0e2bd4 Mon Sep 17 00:00:00 2001 From: Jared Beck Date: Thu, 30 Nov 2017 21:57:36 -0500 Subject: [PATCH] Lint: Discussing FrozenStringLiteralComment --- .rubocop_todo.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml index da2802dc..5e373155 100644 --- a/.rubocop_todo.yml +++ b/.rubocop_todo.yml @@ -14,6 +14,8 @@ Metrics/PerceivedComplexity: # Switching to frozen strings internally would be fine, but if any of those # frozen strings cross our public API, that would be a breaking change. +# Let's wait until we drop support for ruby 2.2 before doing this. If we freeze +# before dropping 2.2, the comment could be misleading. Style/FrozenStringLiteralComment: Enabled: false