Skip to content

Commit a2f651a

Browse files
committed
fix: fix Rubocop Style/ClassVars offense
1 parent 3fba6fa commit a2f651a

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

.rubocop_todo.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,6 @@
66
# Note that changes in the inspected code, or installation of new
77
# versions of RuboCop, may require this file to be generated again.
88

9-
# Offense count: 1
10-
Style/ClassVars:
11-
Exclude:
12-
- 'lib/git/base.rb'
13-
149
# Offense count: 66
1510
# Configuration parameters: AllowedConstants.
1611
Style/Documentation:

lib/git/base.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def self.repository_default_branch(repository, options = {})
3535
#
3636
# @return [Git::Config] the current config instance.
3737
def self.config
38-
@@config ||= Config.new
38+
@config ||= Config.new
3939
end
4040

4141
def self.binary_version(binary_path)

0 commit comments

Comments
 (0)