0 Star 1 Fork 8

openKylin-backup/katello

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.rubocop.yml 3.05 KB
一键复制 编辑 原始数据 按行查看 历史
require:
- rubocop-performance
- rubocop-rails
- rubocop-minitest
# TODO: Remove the following once the rules in the file is addressed
inherit_from:
- .rubocop_todo.yml
# end TODO
Rails:
Enabled: true
AllCops:
Exclude:
- db/migrate/20131014135042_katello_tables.rb
- engines/*/node_modules/**/*
- engines/bastion_katello/bastion-*/**/*
- engines/bastion_katello/vendor/assets/dev-components/**/*
- engines/bastion_katello/Rakefile
- foreman/**/*
- node_modules/**/*
- Gemfile
Include:
- '**/*.rb'
- app/views/**/*.rabl
- '**/*.rake'
TargetRubyVersion: 2.5
Metrics/MethodLength:
Description: 'Avoid methods longer than 30 lines of code.'
Max: 30 # default is 10
Style/HashSyntax:
Enabled: false # don't force 1.9 hash syntax
Rails/DynamicFindBy:
Enabled: False
Whitelist:
- find_by_cp_id
- find_by_katello_id
- find_by_unit_id
- find_by_version
Layout/SpaceInsideHashLiteralBraces:
Enabled: false # allow spaces (eg { :a => 1 })
Layout/LeadingCommentSpace:
Enabled: false
Style/IfUnlessModifier:
Enabled: false
Style/RescueModifier:
Enabled: false
Style/WhileUntilModifier:
Enabled: false
Layout/ParameterAlignment:
Enabled: false # don't care if parameters are not aligned
Layout/HashAlignment:
EnforcedLastArgumentHashStyle: ignore_implicit # ignore argument hashes
Style/ParenthesesAroundCondition:
Enabled: false
Layout/DotPosition:
Enabled: false
Style/Lambda:
Enabled: false # don't require -> for single line lambdas
Style/RedundantSelf:
Enabled: false
Style/RedundantReturn:
Enabled: false
Style/Documentation:
Enabled: false # don't require documentation
Style/Encoding:
Enabled: false # don't require utf-8 encoding on every file
Style/MethodCalledOnDoEndBlock:
Enabled: true
Style/SingleLineBlockParams:
Enabled: false
Metrics/ClassLength:
Exclude:
- 'test/models/content_view_test.rb'
- 'test/controllers/api/v2/repositories_controller_test.rb'
Style/Next:
Enabled: false # don't enforce next in loops over if/unless
Style/FormatString:
Enabled: false # we use % for i18n
Style/GuardClause:
Enabled: false # don't enforce this
Style/ClassVars:
Enabled: True
Exclude: ['test/**/*']
Style/StringLiterals:
Enabled: false # dont't enforce
Style/WordArray:
Enabled: false # don't force usage of %w()
Naming/FileName:
Exclude: ['script/**', 'db/seeds.d/**'] # scripts are hyphened case
Rails/ScopeArgs:
Enabled: false # don't force usage of lambdas for scopes
Style/EachWithObject:
Enabled: false # people can use inject
Style/SymbolProc:
Enabled: false # don't force usage of symbol procs
Style/SignalException:
EnforcedStyle: semantic
# Don't enforce frozen string literals
Style/FrozenStringLiteralComment:
Enabled: false
Gemspec/OrderedDependencies:
Enabled: false
Style/CommentedKeyword:
Enabled: false
Style/RescueStandardError:
Enabled: false
# we use booleans as symbols for scoped search
Lint/BooleanSymbol:
Enabled: false
Lint/UriEscapeUnescape:
Enabled: false
Performance/RegexpMatch:
Enabled: false
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Ruby
1
https://gitee.com/openkylin-backup/katello.git
[email protected]:openkylin-backup/katello.git
openkylin-backup
katello
katello
kylin-develop

搜索帮助