Skip to content

Commit

Permalink
Merge pull request #94 from jgarber623/rubocop-recommendations
Browse files Browse the repository at this point in the history
Implement RuboCop `Style/FrozenStringLiteralComment` recommendation
  • Loading branch information
radar authored May 15, 2024
2 parents 78218ac + 6037c78 commit 9b5500e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 16 deletions.
18 changes: 2 additions & 16 deletions .rubocop_todo.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This configuration was generated by
# `rubocop --auto-gen-config --auto-gen-only-exclude`
# on 2024-05-12 03:22:52 UTC using RuboCop version 1.63.5.
# on 2024-05-14 15:47:02 UTC using RuboCop version 1.63.5.
# 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
Expand All @@ -23,21 +23,7 @@ Metrics/CyclomaticComplexity:
Metrics/MethodLength:
Max: 18

# Offense count: 56
# This cop supports unsafe autocorrection (--autocorrect-all).
# Configuration parameters: EnforcedStyle.
# SupportedStyles: always, always_true, never
Style/FrozenStringLiteralComment:
Enabled: false

# Offense count: 1
# This cop supports unsafe autocorrection (--autocorrect-all).
# Configuration parameters: RequireEnglish.
# SupportedStyles: use_perl_names, use_english_names, use_builtin_english_names
Style/SpecialGlobalVars:
EnforcedStyle: use_perl_names

# Offense count: 3330
# Offense count: 3338
# This cop supports safe autocorrection (--autocorrect).
# Configuration parameters: EnforcedStyle, ConsistentQuotesInMultiline.
# SupportedStyles: single_quotes, double_quotes
Expand Down
1 change: 1 addition & 0 deletions bin/console
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env ruby
# frozen_string_literal: true

require 'bundler/setup'
require 'humanize'
Expand Down

0 comments on commit 9b5500e

Please sign in to comment.