debian-mirror-gitlab/.rubocop.yml

599 lines
12 KiB
YAML
Raw Normal View History

2019-05-05 18:10:48 +05:30
inherit_gem:
gitlab-styles:
- rubocop-default.yml
require:
- ./rubocop/rubocop
- rubocop-rspec
2020-06-23 00:09:42 +05:30
inherit_from:
2021-01-29 00:20:46 +05:30
- .rubocop_manual_todo.yml
2020-06-23 00:09:42 +05:30
- .rubocop_todo.yml
- ./rubocop/rubocop-migrations.yml
2020-10-24 23:57:45 +05:30
- ./rubocop/rubocop-usage-data.yml
2021-01-29 00:20:46 +05:30
- ./rubocop/rubocop-code_reuse.yml
2020-06-23 00:09:42 +05:30
2020-04-22 19:07:51 +05:30
inherit_mode:
merge:
- Include
2019-05-05 18:10:48 +05:30
AllCops:
2021-01-29 00:20:46 +05:30
TargetRubyVersion: 2.7
2020-06-23 00:09:42 +05:30
TargetRailsVersion: 6.0
2019-05-05 18:10:48 +05:30
Exclude:
- 'vendor/**/*'
- 'node_modules/**/*'
- 'db/fixtures/**/*'
- 'db/schema.rb'
- 'ee/db/geo/schema.rb'
- 'tmp/**/*'
- 'bin/**/*'
- 'generator_templates/**/*'
- 'builds/**/*'
- 'plugins/**/*'
2020-04-22 19:07:51 +05:30
- 'file_hooks/**/*'
2021-02-22 17:27:13 +05:30
- 'workhorse/**/*'
2019-05-05 18:10:48 +05:30
CacheRootDirectory: tmp
2020-06-23 00:09:42 +05:30
MaxFilesInCache: 18000
2019-05-05 18:10:48 +05:30
2020-05-24 23:13:21 +05:30
Cop/AvoidKeywordArgumentsInSidekiqWorkers:
Enabled: true
Include:
- 'app/workers/**/*'
- 'ee/app/workers/**/*'
2020-04-22 19:07:51 +05:30
Cop/StaticTranslationDefinition:
Enabled: true
Exclude:
- 'spec/**/*'
- 'ee/spec/**/*'
2021-02-22 17:27:13 +05:30
Lint/LastKeywordArgument:
Enabled: true
Safe: false
2019-05-05 18:10:48 +05:30
# This cop checks whether some constant value isn't a
# mutable literal (e.g. array or hash).
Style/MutableConstant:
Enabled: true
Exclude:
- 'db/migrate/**/*'
- 'db/post_migrate/**/*'
- 'ee/db/migrate/**/*'
- 'ee/db/post_migrate/**/*'
- 'ee/db/geo/migrate/**/*'
# TODO: Move this to gitlab-styles
Style/SafeNavigation:
Enabled: false
2020-11-24 15:15:51 +05:30
Style/AccessModifierDeclarations:
AllowModifiersOnSymbols: true
2019-05-05 18:10:48 +05:30
# Frozen String Literal
Style/FrozenStringLiteralComment:
Enabled: true
Exclude:
- 'config.ru'
- 'Dangerfile'
- 'Gemfile'
- 'Rakefile'
- 'app/views/**/*'
- 'config/**/*'
- 'danger/**/*'
- 'db/**/*'
2019-12-04 20:38:33 +05:30
- 'ee/db/**/*'
- 'ee/lib/tasks/**/*'
2019-05-05 18:10:48 +05:30
- 'lib/tasks/**/*'
- 'qa/**/*'
- 'rubocop/**/*'
- 'scripts/**/*'
RSpec/FilePath:
Exclude:
- 'qa/**/*'
2019-10-12 21:52:04 +05:30
- 'spec/frontend/fixtures/*'
- 'ee/spec/frontend/fixtures/*'
2019-05-05 18:10:48 +05:30
- 'spec/requests/api/v3/*'
Naming/FileName:
ExpectMatchingDefinition: true
Exclude:
- 'db/**/*'
- 'ee/db/**/*'
- 'spec/**/*'
- 'features/**/*'
- 'ee/spec/**/*'
- 'qa/spec/**/*'
- 'qa/qa/specs/**/*'
- 'qa/bin/*'
2019-07-31 22:56:46 +05:30
- 'ee/bin/*'
2019-05-05 18:10:48 +05:30
- 'config/**/*'
- 'ee/config/**/*'
- 'lib/generators/**/*'
- 'locale/unfound_translations.rb'
- 'ee/locale/unfound_translations.rb'
- 'ee/lib/generators/**/*'
- 'qa/qa/scenario/test/integration/ldap_no_tls.rb'
- 'qa/qa/scenario/test/integration/ldap_tls.rb'
IgnoreExecutableScripts: true
AllowedAcronyms:
- EE
- JSON
- LDAP
- SAML
2019-12-04 20:38:33 +05:30
- SSO
2019-05-05 18:10:48 +05:30
- IO
- HMAC
- QA
- ENV
- STL
- PDF
- SVG
- CTE
- DN
- RSA
- CI
- CD
- OAuth
# default ones:
- CLI
- DSL
- ACL
- API
- ASCII
- CPU
- CSS
- DNS
- EOF
- GUID
- HTML
- HTTP
- HTTPS
- ID
- IP
- JSON
- LHS
- QPS
- RAM
- RHS
- RPC
- SLA
- SMTP
- SQL
- SSH
- TCP
- TLS
- TTL
- UDP
- UI
- UID
- UUID
- URI
- URL
- UTF8
- VM
- XML
- XMPP
- XSRF
- XSS
- GRPC
2019-07-07 11:18:12 +05:30
Rails/ApplicationRecord:
Enabled: true
Exclude:
# Models in database migrations should not subclass from ApplicationRecord
# as they need to be as decoupled from application code as possible
- db/**/*.rb
- lib/gitlab/background_migration/**/*.rb
2020-03-13 15:44:24 +05:30
- ee/lib/ee/gitlab/background_migration/**/*.rb
2019-07-07 11:18:12 +05:30
- lib/gitlab/database/**/*.rb
- spec/**/*.rb
- ee/db/**/*.rb
- ee/spec/**/*.rb
2020-06-23 00:09:42 +05:30
Cop/DefaultScope:
Enabled: true
2020-04-22 19:07:51 +05:30
Rails/FindBy:
Enabled: true
Include:
- 'ee/app/**/*.rb'
- 'ee/lib/**/*.rb'
- 'spec/**/*.rb'
- 'ee/spec/**/*.rb'
2020-06-23 00:09:42 +05:30
# This is currently exiting with a rubocop exception error and should be
# resolved hopefully a future update
# An error occurred while Rails/UniqueValidationWithoutIndex cop was inspecting
# app/models/abuse_report.rb:15:2.
# To see the complete backtrace run rubocop -d.
Rails/UniqueValidationWithoutIndex:
Enabled: false
2019-05-05 18:10:48 +05:30
# GitLab ###################################################################
Gitlab/ModuleWithInstanceVariables:
Enable: true
Exclude:
# We ignore Rails helpers right now because it's hard to workaround it
- app/helpers/**/*_helper.rb
- ee/app/helpers/**/*_helper.rb
# We ignore Rails mailers right now because it's hard to workaround it
- app/mailers/emails/**/*.rb
- ee/**/emails/**/*.rb
# We ignore spec helpers because it usually doesn't matter
- spec/support/**/*.rb
- features/steps/**/*.rb
2019-12-21 20:55:43 +05:30
Gitlab/ConstGetInheritFalse:
Enabled: true
Exclude:
- 'qa/bin/*'
2020-05-24 23:13:21 +05:30
Gitlab/ChangeTimezone:
Enabled: true
Exclude:
- config/initializers/time_zone.rb
2019-05-05 18:10:48 +05:30
Gitlab/HTTParty:
Enabled: true
2019-12-04 20:38:33 +05:30
Exclude:
- 'spec/**/*'
- 'ee/spec/**/*'
2019-05-05 18:10:48 +05:30
2020-05-24 23:13:21 +05:30
Gitlab/Json:
Enabled: true
Exclude:
- 'db/**/*'
- 'qa/**/*'
- 'scripts/**/*'
- 'lib/rspec_flaky/**/*'
- 'lib/quality/**/*'
2020-06-23 00:09:42 +05:30
- 'lib/gitlab/danger/**/*'
2020-05-24 23:13:21 +05:30
2020-11-24 15:15:51 +05:30
Gitlab/AvoidUploadedFileFromParams:
Enabled: true
Exclude:
- 'lib/gitlab/middleware/multipart.rb'
- 'spec/**/*'
- 'ee/spec/**/*'
2019-05-05 18:10:48 +05:30
GitlabSecurity/PublicSend:
Enabled: true
Exclude:
- 'config/**/*'
- 'db/**/*'
- 'features/**/*'
- 'lib/**/*.rake'
- 'qa/**/*'
- 'spec/**/*'
- 'ee/db/**/*'
- 'ee/lib/**/*.rake'
- 'ee/spec/**/*'
2020-04-22 19:07:51 +05:30
Gitlab/DuplicateSpecLocation:
2020-06-23 00:09:42 +05:30
Enabled: true
2020-04-22 19:07:51 +05:30
2021-02-22 17:27:13 +05:30
Gitlab/PolicyRuleBoolean:
Enabled: true
Include:
- 'app/policies/**/*'
- 'ee/app/policies/**/*'
2019-05-05 18:10:48 +05:30
Cop/InjectEnterpriseEditionModule:
Enabled: true
Exclude:
- 'spec/**/*'
- 'ee/spec/**/*'
2019-07-07 11:18:12 +05:30
Style/ReturnNil:
Enabled: true
# It isn't always safe to replace `=~` with `.match?`, especially when there are
# nil values on the left hand side
Performance/RegexpMatch:
Enabled: false
2019-07-31 22:56:46 +05:30
2020-06-23 00:09:42 +05:30
Cop/ActiveRecordAssociationReload:
2019-07-31 22:56:46 +05:30
Enabled: true
Exclude:
- 'spec/**/*'
- 'ee/spec/**/*'
2019-12-04 20:38:33 +05:30
2020-06-23 00:09:42 +05:30
Gitlab/AvoidFeatureGet:
Enabled: true
2020-11-24 15:15:51 +05:30
RSpec/TimecopFreeze:
2021-01-03 14:25:43 +05:30
Enabled: true
AutoCorrect: true
Include:
- 'spec/**/*.rb'
- 'ee/spec/**/*.rb'
- 'qa/spec/**/*.rb'
RSpec/TimecopTravel:
Enabled: true
2020-11-24 15:15:51 +05:30
AutoCorrect: true
Include:
- 'spec/**/*.rb'
- 'ee/spec/**/*.rb'
- 'qa/spec/**/*.rb'
2019-12-21 20:55:43 +05:30
Naming/PredicateName:
Enabled: true
Exclude:
- 'spec/**/*'
- 'ee/spec/**/*'
2019-12-04 20:38:33 +05:30
RSpec/FactoriesInMigrationSpecs:
Enabled: true
Include:
- 'spec/migrations/**/*.rb'
- 'ee/spec/migrations/**/*.rb'
- 'spec/lib/gitlab/background_migration/**/*.rb'
2020-03-13 15:44:24 +05:30
- 'spec/lib/ee/gitlab/background_migration/**/*.rb'
- 'ee/spec/lib/ee/gitlab/background_migration/**/*.rb'
2019-12-04 20:38:33 +05:30
Cop/IncludeSidekiqWorker:
Enabled: true
Exclude:
- 'spec/**/*'
- 'ee/spec/**/*'
Gitlab/Union:
Enabled: true
Exclude:
- 'spec/**/*'
- 'ee/spec/**/*'
2021-01-03 14:25:43 +05:30
API/Base:
2020-07-28 23:09:34 +05:30
Enabled: true
Include:
- 'lib/**/api/**/*.rb'
- 'ee/**/api/**/*.rb'
API/GrapeArrayMissingCoerce:
Enabled: true
Include:
- 'lib/**/api/**/*.rb'
- 'ee/**/api/**/*.rb'
2019-12-04 20:38:33 +05:30
Cop/SidekiqOptionsQueue:
Enabled: true
Exclude:
- 'spec/**/*.rb'
- 'ee/spec/**/*.rb'
2021-01-29 00:20:46 +05:30
Graphql/ResolverType:
Enabled: true
2021-02-22 17:27:13 +05:30
Exclude:
- 'app/graphql/resolvers/base_resolver.rb'
2021-01-29 00:20:46 +05:30
Include:
- 'app/graphql/resolvers/**/*'
- 'ee/app/graphql/resolvers/**/*'
2019-12-04 20:38:33 +05:30
Graphql/AuthorizeTypes:
Enabled: true
2020-07-28 23:09:34 +05:30
Include:
- 'app/graphql/types/**/*'
- 'ee/app/graphql/types/**/*'
2019-12-04 20:38:33 +05:30
Exclude:
- 'spec/**/*.rb'
- 'ee/spec/**/*.rb'
2021-01-03 14:25:43 +05:30
Graphql/GIDExpectedType:
Enabled: true
Include:
- 'app/graphql/**/*'
- 'ee/app/graphql/**/*'
Exclude:
- 'spec/**/*.rb'
- 'ee/spec/**/*.rb'
Graphql/IDType:
Enabled: true
Include:
- 'app/graphql/**/*'
- 'ee/app/graphql/**/*'
2020-10-24 23:57:45 +05:30
Graphql/JSONType:
Enabled: true
Include:
- 'app/graphql/**/*'
- 'ee/app/graphql/**/*'
Exclude:
- 'spec/**/*.rb'
- 'ee/spec/**/*.rb'
2019-12-04 20:38:33 +05:30
RSpec/EnvAssignment:
Enable: true
Include:
- 'spec/**/*.rb'
- 'ee/spec/**/*.rb'
Exclude:
- 'spec/**/fast_spec_helper.rb'
- 'ee/spec/**/fast_spec_helper.rb'
- 'spec/**/spec_helper.rb'
- 'ee/spec/**/spec_helper.rb'
RSpec/BeSuccessMatcher:
Enabled: true
Include:
- 'spec/controllers/**/*'
- 'ee/spec/controllers/**/*'
- 'spec/support/shared_examples/controllers/**/*'
- 'ee/spec/support/shared_examples/controllers/**/*'
- 'spec/support/controllers/**/*'
- 'ee/spec/support/controllers/**/*'
Scalability/FileUploads:
Enabled: true
Include:
- 'lib/api/**/*.rb'
- 'ee/lib/api/**/*.rb'
Graphql/Descriptions:
Enabled: true
2021-02-22 17:27:13 +05:30
AutoCorrect: true
2019-12-04 20:38:33 +05:30
Include:
- 'app/graphql/**/*'
- 'ee/app/graphql/**/*'
2019-12-26 22:10:19 +05:30
2020-03-13 15:44:24 +05:30
# Cops for upgrade to gitlab-styles 3.1.0
RSpec/ImplicitSubject:
Enabled: false
2020-05-24 23:13:21 +05:30
# WIP See https://gitlab.com/gitlab-org/gitlab/-/issues/211580
2020-03-13 15:44:24 +05:30
RSpec/LeakyConstantDeclaration:
2020-04-22 19:07:51 +05:30
Enabled: true
Exclude:
2020-05-24 23:13:21 +05:30
- 'spec/db/schema_spec.rb'
- 'spec/lib/feature_spec.rb'
- 'spec/lib/gitlab/config/entry/simplifiable_spec.rb'
- 'spec/lib/gitlab/quick_actions/dsl_spec.rb'
- 'spec/lib/marginalia_spec.rb'
- 'spec/mailers/notify_spec.rb'
- 'spec/models/concerns/batch_destroy_dependent_associations_spec.rb'
- 'spec/models/concerns/bulk_insert_safe_spec.rb'
- 'spec/models/concerns/bulk_insertable_associations_spec.rb'
- 'spec/models/concerns/triggerable_hooks_spec.rb'
- 'spec/models/repository_spec.rb'
- 'spec/services/clusters/applications/check_installation_progress_service_spec.rb'
- 'spec/support/shared_examples/quick_actions/issuable/issuable_quick_actions_shared_examples.rb'
2020-03-13 15:44:24 +05:30
RSpec/EmptyLineAfterHook:
Enabled: false
RSpec/HooksBeforeExamples:
Enabled: false
RSpec/EmptyLineAfterExample:
Enabled: false
RSpec/Be:
Enabled: false
RSpec/DescribedClass:
Enabled: false
RSpec/SharedExamples:
Enabled: false
RSpec/EmptyLineAfterExampleGroup:
Enabled: false
RSpec/ReceiveNever:
Enabled: false
RSpec/MissingExampleGroupArgument:
Enabled: false
RSpec/UnspecifiedException:
Enabled: false
RSpec/HaveGitlabHttpStatus:
Enabled: true
Exclude:
- 'spec/support/matchers/have_gitlab_http_status.rb'
Include:
2020-04-08 14:13:33 +05:30
- 'spec/**/*'
- 'ee/spec/**/*'
2020-03-13 15:44:24 +05:30
Style/MultilineWhenThen:
Enabled: false
2020-10-24 23:57:45 +05:30
# We use EnforcedStyle of comparison here due to it being better
# performing code as seen in https://gitlab.com/gitlab-org/gitlab/-/merge_requests/36221#note_375659681
Style/NumericPredicate:
EnforcedStyle: comparison
2020-03-13 15:44:24 +05:30
Style/FloatDivision:
Enabled: false
2020-04-08 14:13:33 +05:30
Cop/BanCatchThrow:
Enabled: true
2020-04-22 19:07:51 +05:30
Performance/ReadlinesEach:
Enabled: true
Performance/ChainArrayAllocation:
Enabled: true
Include:
- 'lib/gitlab/import_export/**/*'
- 'ee/lib/gitlab/import_export/**/*'
- 'ee/lib/ee/gitlab/import_export/**/*'
2020-05-24 23:13:21 +05:30
Rails/TimeZone:
Enabled: true
EnforcedStyle: 'flexible'
Include:
- 'app/controllers/**/*'
- 'app/services/**/*'
2020-10-24 23:57:45 +05:30
- 'lib/**/*'
2020-05-24 23:13:21 +05:30
- 'spec/controllers/**/*'
- 'spec/services/**/*'
2020-10-24 23:57:45 +05:30
- 'spec/lib/**/*'
2020-05-24 23:13:21 +05:30
- 'ee/app/controllers/**/*'
- 'ee/app/services/**/*'
- 'ee/spec/controllers/**/*'
- 'ee/spec/services/**/*'
2020-06-23 00:09:42 +05:30
- 'app/models/**/*'
- 'spec/models/**/*'
- 'ee/app/models/**/*'
- 'ee/spec/models/**/*'
2020-07-28 23:09:34 +05:30
- 'app/workers/**/*'
- 'spec/workers/**/*'
- 'ee/app/workers/**/*'
- 'ee/spec/workers/**/*'
2020-10-24 23:57:45 +05:30
- 'ee/lib/**/*'
- 'ee/spec/lib/**/*'
2020-05-24 23:13:21 +05:30
2020-06-23 00:09:42 +05:30
# WIP: See https://gitlab.com/gitlab-org/gitlab/-/issues/220040
Rails/SaveBang:
Enabled: true
2020-07-28 23:09:34 +05:30
AllowImplicitReturn: false
AllowedReceivers: ['ActionDispatch::TestRequest']
2020-06-23 00:09:42 +05:30
Include:
- 'spec/**/*.rb'
- 'ee/spec/**/*.rb'
- 'qa/spec/**/*.rb'
- 'qa/qa/specs/**/*.rb'
2020-10-24 23:57:45 +05:30
Cop/PutProjectRoutesUnderScope:
Include:
- 'config/routes/project.rb'
- 'ee/config/routes/project.rb'
Cop/PutGroupRoutesUnderScope:
Include:
- 'config/routes/group.rb'
- 'ee/config/routes/group.rb'
2020-11-24 15:15:51 +05:30
Migration/ComplexIndexesRequireName:
Exclude:
- !ruby/regexp /\Adb\/(post_)?migrate\/201.*\.rb\z/
- !ruby/regexp /\Adb\/(post_)?migrate\/20200[1-7].*\.rb\z/
Migration/ReferToIndexByName:
Exclude:
- !ruby/regexp /\Adb\/(post_)?migrate\/201.*\.rb\z/
- !ruby/regexp /\Adb\/(post_)?migrate\/20200[1-7].*\.rb\z/
- !ruby/regexp /\Aee\/db\/geo\/(post_)?migrate\/201.*\.rb\z/
Migration/CreateTableWithForeignKeys:
# Disable this cop for all the existing migrations
Exclude:
- !ruby/regexp /\Adb\/(?:post_)?migrate\/(?:201[0-9]\d+|20200[0-8][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9])_.+\.rb\z/
Gitlab/RailsLogger:
Exclude:
- 'spec/**/*.rb'
- 'ee/spec/**/*.rb'
2021-01-03 14:25:43 +05:30
# WIP See https://gitlab.com/gitlab-org/gitlab/-/issues/267606
FactoryBot/InlineAssociation:
Include:
- 'spec/factories/**/*.rb'
- 'ee/spec/factories/**/*.rb'