-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add theforeman-rubocop gem and Rubocop configuration (#56)
Added theforeman-rubocop gem to v0.1.0 and the rubocop configuration, followed by default style from the gem.
- Loading branch information
1 parent
02936b7
commit 1e338a0
Showing
7 changed files
with
203 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
inherit_from: .rubocop_todo.yml | ||
|
||
inherit_gem: | ||
theforeman-rubocop: | ||
- default.yml | ||
|
||
Metrics: | ||
Enabled: false | ||
|
||
Style/StringLiterals: | ||
Enabled: false | ||
|
||
Style/FrozenStringLiteralComment: | ||
Enabled: false | ||
|
||
Style/HashSyntax: | ||
Enabled: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,175 @@ | ||
# This configuration was generated by | ||
# `rubocop --auto-gen-config` | ||
# on 2024-05-30 08:41:44 UTC using RuboCop version 1.23.0. | ||
# 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 | ||
# versions of RuboCop, may require this file to be generated again. | ||
|
||
# Offense count: 1 | ||
# Configuration parameters: Include. | ||
# Include: **/*.gemspec | ||
Gemspec/RequiredRubyVersion: | ||
Exclude: | ||
- 'hammer_cli_foreman_tasks.gemspec' | ||
|
||
# Offense count: 1 | ||
# Cop supports --auto-correct. | ||
Layout/EmptyLineAfterMagicComment: | ||
Exclude: | ||
- 'hammer_cli_foreman_tasks.gemspec' | ||
|
||
# Offense count: 1 | ||
# Cop supports --auto-correct. | ||
Layout/EmptyLines: | ||
Exclude: | ||
- 'lib/hammer_cli_foreman_tasks/task.rb' | ||
|
||
# Offense count: 5 | ||
# Cop supports --auto-correct. | ||
# Configuration parameters: EnforcedStyle. | ||
# SupportedStyles: empty_lines, empty_lines_except_namespace, empty_lines_special, no_empty_lines | ||
Layout/EmptyLinesAroundModuleBody: | ||
Exclude: | ||
- 'lib/hammer_cli_foreman_tasks/async_command.rb' | ||
- 'lib/hammer_cli_foreman_tasks/i18n.rb' | ||
|
||
# Offense count: 1 | ||
# Cop supports --auto-correct. | ||
# Configuration parameters: AllowForAlignment, AllowBeforeTrailingComments, ForceEqualSignAlignment. | ||
Layout/ExtraSpacing: | ||
Exclude: | ||
- 'lib/hammer_cli_foreman_tasks/task_progress.rb' | ||
|
||
# Offense count: 1 | ||
# Cop supports --auto-correct. | ||
# Configuration parameters: AllowForAlignment, EnforcedStyleForExponentOperator. | ||
# SupportedStylesForExponentOperator: space, no_space | ||
Layout/SpaceAroundOperators: | ||
Exclude: | ||
- 'lib/hammer_cli_foreman_tasks/task_progress.rb' | ||
|
||
# Offense count: 2 | ||
# Cop supports --auto-correct. | ||
Performance/CompareWithBlock: | ||
Exclude: | ||
- 'lib/hammer_cli_foreman_tasks/command_extensions/recurring_logic.rb' | ||
|
||
# Offense count: 1 | ||
# Cop supports --auto-correct. | ||
# Configuration parameters: NilOrEmpty, NotPresent, UnlessPresent. | ||
Rails/Blank: | ||
Exclude: | ||
- 'lib/hammer_cli_foreman_tasks/task_progress.rb' | ||
|
||
# Offense count: 3 | ||
# Cop supports --auto-correct. | ||
# Configuration parameters: Include. | ||
# Include: app/**/*.rb, config/**/*.rb, db/**/*.rb, lib/**/*.rb | ||
Rails/Output: | ||
Exclude: | ||
- 'lib/hammer_cli_foreman_tasks/recurring_logic.rb' | ||
- 'lib/hammer_cli_foreman_tasks/task_progress.rb' | ||
|
||
# Offense count: 1 | ||
# Cop supports --auto-correct. | ||
Style/Encoding: | ||
Exclude: | ||
- 'hammer_cli_foreman_tasks.gemspec' | ||
|
||
# Offense count: 1 | ||
# Cop supports --auto-correct. | ||
Style/ExpandPathArguments: | ||
Exclude: | ||
- 'hammer_cli_foreman_tasks.gemspec' | ||
|
||
# Offense count: 1 | ||
# Cop supports --auto-correct. | ||
Style/GlobalStdStream: | ||
Exclude: | ||
- 'lib/hammer_cli_foreman_tasks/task_progress.rb' | ||
|
||
# Offense count: 2 | ||
# Configuration parameters: MinBodyLength. | ||
Style/GuardClause: | ||
Exclude: | ||
- 'lib/hammer_cli_foreman_tasks/task_progress.rb' | ||
|
||
# Offense count: 1 | ||
# Cop supports --auto-correct. | ||
Style/IfUnlessModifier: | ||
Exclude: | ||
- 'lib/hammer_cli_foreman_tasks/task_progress.rb' | ||
|
||
# Offense count: 1 | ||
# Cop supports --auto-correct. | ||
Style/InfiniteLoop: | ||
Exclude: | ||
- 'lib/hammer_cli_foreman_tasks/task_progress.rb' | ||
|
||
# Offense count: 1 | ||
# Cop supports --auto-correct. | ||
# Configuration parameters: EnforcedStyle, IgnoredMethods. | ||
# SupportedStyles: predicate, comparison | ||
Style/NumericPredicate: | ||
Exclude: | ||
- 'lib/hammer_cli_foreman_tasks/recurring_logic.rb' | ||
|
||
# Offense count: 2 | ||
# Cop supports --auto-correct. | ||
# Configuration parameters: AllowSafeAssignment, AllowInMultilineConditions. | ||
Style/ParenthesesAroundCondition: | ||
Exclude: | ||
- 'lib/hammer_cli_foreman_tasks/recurring_logic.rb' | ||
|
||
# Offense count: 1 | ||
# Cop supports --auto-correct. | ||
# Configuration parameters: PreferredDelimiters. | ||
Style/PercentLiteralDelimiters: | ||
Exclude: | ||
- 'lib/hammer_cli_foreman_tasks/task_progress.rb' | ||
|
||
# Offense count: 1 | ||
# Cop supports --auto-correct. | ||
Style/Proc: | ||
Exclude: | ||
- 'lib/hammer_cli_foreman_tasks/task_progress.rb' | ||
|
||
# Offense count: 1 | ||
# Cop supports --auto-correct. | ||
Style/RedundantBegin: | ||
Exclude: | ||
- 'lib/hammer_cli_foreman_tasks/task_progress.rb' | ||
|
||
# Offense count: 1 | ||
# Cop supports --auto-correct. | ||
# Configuration parameters: RequireEnglish. | ||
# SupportedStyles: use_perl_names, use_english_names | ||
Style/SpecialGlobalVars: | ||
EnforcedStyle: use_perl_names | ||
|
||
# Offense count: 1 | ||
# Cop supports --auto-correct. | ||
Style/StderrPuts: | ||
Exclude: | ||
- 'lib/hammer_cli_foreman_tasks/task_progress.rb' | ||
|
||
# Offense count: 1 | ||
# Cop supports --auto-correct. | ||
# Configuration parameters: Mode. | ||
Style/StringConcatenation: | ||
Exclude: | ||
- 'lib/hammer_cli_foreman_tasks/recurring_logic.rb' | ||
|
||
# Offense count: 1 | ||
# Cop supports --auto-correct. | ||
Style/ZeroLengthPredicate: | ||
Exclude: | ||
- 'lib/hammer_cli_foreman_tasks/recurring_logic.rb' | ||
|
||
# Offense count: 3 | ||
# Cop supports --auto-correct. | ||
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns. | ||
# URISchemes: http, https | ||
Layout/LineLength: | ||
Max: 206 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,13 +13,13 @@ Gem::Specification.new do |s| | |
s.email = ["[email protected]"] | ||
s.homepage = "https://github.com/theforeman/hammer-cli-foreman-tasks" | ||
s.summary = "Foreman CLI plugin for showing tasks information for resoruces and users" | ||
s.description = <<DESC | ||
Contains the code for showing of the tasks (results and progress) in the Hammer CLI. | ||
DESC | ||
s.description = <<~DESC | ||
Contains the code for showing of the tasks (results and progress) in the Hammer CLI. | ||
DESC | ||
|
||
s.files = Dir["{lib,config,locale}/**/*", "LICENSE", "README.md"] | ||
s.require_paths = ["lib"] | ||
|
||
s.add_dependency "powerbar", ">= 1.0.11", "< 3.0" | ||
s.add_dependency "hammer_cli_foreman", "> 0.1.1", "< 4.0.0" | ||
s.add_dependency "powerbar", ">= 1.0.11", "< 3.0" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters