Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
a06b7988
Commit
a06b7988
authored
Feb 11, 2021
by
Markus Koller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix Style/FrozenStringLiteralComment violations in rubocop
Auto-corrected with Rubocop
parent
2fc1ffff
Changes
19
Show whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
36 additions
and
20 deletions
+36
-20
.rubocop_manual_todo.yml
.rubocop_manual_todo.yml
+0
-20
rubocop/cop/avoid_keyword_arguments_in_sidekiq_workers.rb
rubocop/cop/avoid_keyword_arguments_in_sidekiq_workers.rb
+2
-0
rubocop/cop/gitlab/finder_with_find_by.rb
rubocop/cop/gitlab/finder_with_find_by.rb
+2
-0
rubocop/cop/gitlab/keys-first-and-values-first.rb
rubocop/cop/gitlab/keys-first-and-values-first.rb
+2
-0
rubocop/cop/migration/add_concurrent_foreign_key.rb
rubocop/cop/migration/add_concurrent_foreign_key.rb
+2
-0
rubocop/cop/migration/add_concurrent_index.rb
rubocop/cop/migration/add_concurrent_index.rb
+2
-0
rubocop/cop/migration/add_index.rb
rubocop/cop/migration/add_index.rb
+2
-0
rubocop/cop/migration/add_timestamps.rb
rubocop/cop/migration/add_timestamps.rb
+2
-0
rubocop/cop/migration/datetime.rb
rubocop/cop/migration/datetime.rb
+2
-0
rubocop/cop/migration/hash_index.rb
rubocop/cop/migration/hash_index.rb
+2
-0
rubocop/cop/migration/remove_column.rb
rubocop/cop/migration/remove_column.rb
+2
-0
rubocop/cop/migration/remove_concurrent_index.rb
rubocop/cop/migration/remove_concurrent_index.rb
+2
-0
rubocop/cop/migration/remove_index.rb
rubocop/cop/migration/remove_index.rb
+2
-0
rubocop/cop/migration/safer_boolean_column.rb
rubocop/cop/migration/safer_boolean_column.rb
+2
-0
rubocop/cop/migration/timestamps.rb
rubocop/cop/migration/timestamps.rb
+2
-0
rubocop/cop/migration/update_column_in_batches.rb
rubocop/cop/migration/update_column_in_batches.rb
+2
-0
rubocop/cop/project_path_helper.rb
rubocop/cop/project_path_helper.rb
+2
-0
rubocop/migration_helpers.rb
rubocop/migration_helpers.rb
+2
-0
rubocop/qa_helpers.rb
rubocop/qa_helpers.rb
+2
-0
No files found.
.rubocop_manual_todo.yml
View file @
a06b7988
...
...
@@ -2505,26 +2505,6 @@ Style/FrozenStringLiteralComment:
-
'
qa/qa/fixtures/auto_devops_rack/Rakefile'
-
'
qa/qa/fixtures/auto_devops_rack/config.ru'
-
'
qa/qa/page/page_concern.rb'
-
'
rubocop/cop/avoid_keyword_arguments_in_sidekiq_workers.rb'
-
'
rubocop/cop/gitlab/finder_with_find_by.rb'
-
'
rubocop/cop/gitlab/keys-first-and-values-first.rb'
-
'
rubocop/cop/gitlab/module_with_instance_variables.rb'
-
'
rubocop/cop/gitlab/predicate_memoization.rb'
-
'
rubocop/cop/migration/add_concurrent_foreign_key.rb'
-
'
rubocop/cop/migration/add_concurrent_index.rb'
-
'
rubocop/cop/migration/add_index.rb'
-
'
rubocop/cop/migration/add_timestamps.rb'
-
'
rubocop/cop/migration/datetime.rb'
-
'
rubocop/cop/migration/hash_index.rb'
-
'
rubocop/cop/migration/remove_column.rb'
-
'
rubocop/cop/migration/remove_concurrent_index.rb'
-
'
rubocop/cop/migration/remove_index.rb'
-
'
rubocop/cop/migration/safer_boolean_column.rb'
-
'
rubocop/cop/migration/timestamps.rb'
-
'
rubocop/cop/migration/update_column_in_batches.rb'
-
'
rubocop/cop/project_path_helper.rb'
-
'
rubocop/migration_helpers.rb'
-
'
rubocop/qa_helpers.rb'
-
'
scripts/flaky_examples/detect-new-flaky-examples'
-
'
scripts/flaky_examples/prune-old-flaky-examples'
-
'
scripts/gather-test-memory-data'
...
...
rubocop/cop/avoid_keyword_arguments_in_sidekiq_workers.rb
View file @
a06b7988
# frozen_string_literal: true
module
RuboCop
module
Cop
# Cop that blacklists keyword arguments usage in Sidekiq workers
...
...
rubocop/cop/gitlab/finder_with_find_by.rb
View file @
a06b7988
# frozen_string_literal: true
module
RuboCop
module
Cop
module
Gitlab
...
...
rubocop/cop/gitlab/keys-first-and-values-first.rb
View file @
a06b7988
# frozen_string_literal: true
module
RuboCop
module
Cop
module
Gitlab
...
...
rubocop/cop/migration/add_concurrent_foreign_key.rb
View file @
a06b7988
# frozen_string_literal: true
require_relative
'../../migration_helpers'
module
RuboCop
...
...
rubocop/cop/migration/add_concurrent_index.rb
View file @
a06b7988
# frozen_string_literal: true
require_relative
'../../migration_helpers'
module
RuboCop
...
...
rubocop/cop/migration/add_index.rb
View file @
a06b7988
# frozen_string_literal: true
require_relative
'../../migration_helpers'
module
RuboCop
...
...
rubocop/cop/migration/add_timestamps.rb
View file @
a06b7988
# frozen_string_literal: true
require_relative
'../../migration_helpers'
module
RuboCop
...
...
rubocop/cop/migration/datetime.rb
View file @
a06b7988
# frozen_string_literal: true
require_relative
'../../migration_helpers'
module
RuboCop
...
...
rubocop/cop/migration/hash_index.rb
View file @
a06b7988
# frozen_string_literal: true
require
'set'
require_relative
'../../migration_helpers'
...
...
rubocop/cop/migration/remove_column.rb
View file @
a06b7988
# frozen_string_literal: true
require_relative
'../../migration_helpers'
module
RuboCop
...
...
rubocop/cop/migration/remove_concurrent_index.rb
View file @
a06b7988
# frozen_string_literal: true
require_relative
'../../migration_helpers'
module
RuboCop
...
...
rubocop/cop/migration/remove_index.rb
View file @
a06b7988
# frozen_string_literal: true
require_relative
'../../migration_helpers'
module
RuboCop
...
...
rubocop/cop/migration/safer_boolean_column.rb
View file @
a06b7988
# frozen_string_literal: true
require_relative
'../../migration_helpers'
module
RuboCop
...
...
rubocop/cop/migration/timestamps.rb
View file @
a06b7988
# frozen_string_literal: true
require_relative
'../../migration_helpers'
module
RuboCop
...
...
rubocop/cop/migration/update_column_in_batches.rb
View file @
a06b7988
# frozen_string_literal: true
require_relative
'../../migration_helpers'
module
RuboCop
...
...
rubocop/cop/project_path_helper.rb
View file @
a06b7988
# frozen_string_literal: true
module
RuboCop
module
Cop
class
ProjectPathHelper
<
RuboCop
::
Cop
::
Cop
...
...
rubocop/migration_helpers.rb
View file @
a06b7988
# frozen_string_literal: true
module
RuboCop
# Module containing helper methods for writing migration cops.
module
MigrationHelpers
...
...
rubocop/qa_helpers.rb
View file @
a06b7988
# frozen_string_literal: true
module
RuboCop
# Module containing helper methods for writing QA cops.
module
QAHelpers
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment