summaryrefslogtreecommitdiff
path: root/.rubocop.yml
Commit message (Collapse)AuthorAgeFilesLines
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-03-091-0/+3
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-03-031-15/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-03-021-2/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-02-271-2/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-02-261-2/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-02-251-2/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-02-211-0/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-02-191-0/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-02-171-0/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-02-061-8/+6
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-02-061-0/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-02-051-2/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-291-6/+0
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-281-0/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-271-0/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-271-6/+3
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-241-1/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-221-0/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-201-19/+4
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-151-0/+3
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-141-4/+4
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-091-6/+0
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-12-201-0/+73
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-11-261-1/+0
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-11-071-0/+3
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-11-041-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-10-291-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-10-161-0/+5
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-10-071-1/+0
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-09-251-0/+6
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-09-131-0/+7
|
* Add Scalability/FileUploads copAlessio Caiazza2019-09-101-0/+5
| | | | | This cop prevents you from using file in API, it points you to the development documentation about workhorse file acceleration.
* Replace rails_helper.rb with spec_helper.rb66741-remove-spec-rails_helper-rbAsh McKenzie2019-08-301-2/+0
| | | | | rails_helper.rb's only logic was to require spec_helper.rb.
* Merge branch 'docs/rs-root-parity' into 'master'Yorick Peterse2019-08-281-1/+4
|\ | | | | | | | | CE-EE parity for root files See merge request gitlab-org/gitlab-ce!32287
| * Unify RuboCop configurationdocs/rs-root-parityRobert Speicher2019-08-271-1/+4
| |
* | Refactor BeSuccessMatcher specs for readabilityVitali Tatarintev2019-08-281-0/+1
| |
* | Utilize Rubocop's Include for BeSuccessMatcherVitali Tatarintev2019-08-281-0/+8
|/ | | | | Use Rubocop's Include instead of manually checking the matcher in controllers specs.
* Utilize RuboCop's Include/Exclude configPeter Leitzen2019-08-261-0/+54
| | | | Stop checking the file location programmatically.
* Make ruby 2.6 the officially supported versionHordur Freyr Yngvason2019-08-141-1/+1
|
* Move frontend fixtures into spec/frontendMike Greiling2019-07-191-2/+2
| | | | | Moves every fixture source file from spec/javascripts to spec/frontend
* Exclude ee/bin from Naming/FileName coptc-move-geo-cursor-bin-ceToon Claes2019-04-181-0/+1
| | | | | Related issue: https://gitlab.com/gitlab-org/gitlab-ee/issues/6565
* Forbid the use of `#reload` and prefer `#reset`forbid-the-usage-of-reloadKamil TrzciƄski2019-04-151-0/+6
| | | | | | | The `#reload` makes to load all objects into memory, and the main purpose of `#reload` is to drop the association cache. The `#reset` seems to solve exactly that case.
* Document ApplicationRecord / pluck_primary_keyNick Thomas2019-03-291-0/+14
| | | | We also enable the rubocop that makes it mandatory
* Update rubocop target ruby versionNick Thomas2019-03-131-0/+6
|
* Adds the Rubocop ReturnNil copAndrew Newdigate2019-03-061-0/+3
| | | | | This style change enforces `return if ...` instead of `return nil if ...` to save maintainers a few minor review points
* Adds inter-service OpenTracing propagationAndrew Newdigate2019-01-221-0/+1
| | | | | | | | | | | | | | This change allows the GitLab rails and sidekiq components to receive tracing spans from upstream services such as Workhorse and pass these spans on to downstream services including Gitaly and Sidekiq. This change will also emit traces for incoming and outgoing requests using the propagated trace information. This will allow operators and engineers to view traces across the Workhorse, GitLab Rails, Sidekiq and Gitaly components. Additional intra-service instrumentation will be added in future changes.
* Update specs to rails5 formatblackst0ne-convert-specs-rails5-styleblackst0ne2018-12-191-1/+1
| | | | | | | | | | Updates specs to use new rails5 format. The old format: `get :show, { some: params }, { some: headers }` The new format: `get :show, params: { some: params }, headers: { some: headers }`
* Added Cop for injecting EE modulesYorick Peterse2018-12-131-0/+6
| | | | | | | This Cop enforces the rule that injecting EE modules (using prepend, include, or extend) is done by placing the injection on the last line of a file, instead of somewhere in the middle. By placing these lines at the very end, merge conflicts will not happen.
* Enable Rubocop on lib/gitlabgfyoung2018-11-201-1/+0
| | | | | | | This should wrap up frozen string enablement for gitlab-ce. xref gitlab-org/gitlab-ce#47424.
* Merge branch 'qa-59-ldap-ssl-scenario' into 'master'Stan Hu2018-10-261-0/+3
|\ | | | | | | | | | | | | E2E Test - LDAP login with SSL Closes gitlab-qa#59 See merge request gitlab-org/gitlab-ce!22574