summaryrefslogtreecommitdiff
path: root/.rubocop_todo.yml
Commit message (Collapse)AuthorAgeFilesLines
* Add latest changes from gitlab-org/gitlab@13-2-stable-eeGitLab Bot2020-07-201-57/+362
|
* Add latest changes from gitlab-org/gitlab@13-1-stable-eeGitLab Bot2020-06-181-110/+782
|
* Add latest changes from gitlab-org/gitlab@13-0-stable-eeGitLab Bot2020-05-201-24/+0
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-04-081-8/+0
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-03-301-4/+0
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-03-271-7/+0
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-02-061-126/+0
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-271-123/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-271-0/+126
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-231-43/+0
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-201-122/+104
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-12-191-5/+0
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-11-171-7/+0
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-10-181-5/+0
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-09-261-13/+0
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-09-171-5/+0
|
* Rename API::Internal class to API::Internal::Base61927-internal-api-namespaceKrasimir Angelov2019-09-041-1/+1
| | | | | | so that we can use API::Internal namespace. Related to https://gitlab.com/gitlab-org/gitlab-ce/issues/61927.
* Provide filename and line number for `class_eval`Peter Leitzen2019-09-021-5/+0
| | | | This commit removes one RuboCop offense from its todo file.
* Enable Rubocop Performance/ReverseEachsh-rubocop-reverse-eachStan Hu2019-07-241-8/+0
| | | | | | | `Array.reverse_each` is faster than `Array.reverse.each` because: * reverse.each creates a new array then loops each element * reverse_each loops in reverse order (no intermediate array created)
* Enable Rubocop Performance/InefficientHashSearchsh-enable-rubocop-hash-searchStan Hu2019-07-241-11/+0
| | | | | | | | | When used with a Hash, `.keys.include?` is bad because: 1. It performs a O(n) search instead of the efficient `.has_key?` 2. It clones all keys into separate array. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/64975
* Remove now unused KubernetesService methodsremove_unused_k8s_service_methodsJames Fargher2019-07-051-3/+0
| | | | | Now that KubernetesService can no longer be a DeploymentPlatform we can remove all kubernetes client code and KubernetesService edge cases.
* Make KubernetesService readonlyJames Fargher2019-06-181-1/+0
| | | | | | | | We are deprecating this service in favor of instance wide clusters. Therefore we removed some code that is not anymore needed for a readonly cluster and also we added some flags to allow for this deprecation. These flags are to be removed in the next release when we finally completelly remove KubernetesService.
* Update .rubocop_todo.ymlStan Hu2019-05-051-21/+20
|
* Regenerate Rubocop rulesStan Hu2019-05-051-122/+4
|
* Upgrade to Rubocop 0.68.1Stan Hu2019-05-051-148/+484
| | | | This adds Ruby 2.6 support.
* Revert "Remove HipChat integration from GitLab"Sean McGivern2019-04-101-0/+1
| | | | This reverts commit a5378665a1dc0b9c8dc3a4fa279a0eb78aac5aac.
* Remove HipChat integration from GitLabNick Thomas2019-02-081-1/+0
|
* Fix ReturnInVoidContext rubocop offenseSemyon Pupkov2019-02-011-5/+0
|
* Re-enable MethodCallWithoutArgsParentheses CopAndrew Newdigate2019-01-291-5/+0
| | | | | Re-enables and autocorrects all instances of the Style/MethodCallWithoutArgsParentheses rule
* Enable the Layout/ExtraSpacing cop56392-enable-the-layout-extraspacing-copRémy Coutable2019-01-241-6/+0
| | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* chore(rubocop): fix Style/TrivialAccessors issuesSemyon Pupkov2019-01-161-11/+0
|
* Merge branch 'fix-rspec-offcense' into 'master'Rémy Coutable2018-12-171-11/+0
|\ | | | | | | | | Fix RSpec/HookArgument rubocop offense See merge request gitlab-org/gitlab-ce!23776
| * Fix RSpec/HookArgument rubocop offenseSemyon Pupkov2018-12-111-11/+0
| |
* | Fix ConstantName rubocop offenseSemyon Pupkov2018-12-091-6/+0
|/
* Merge branch 'fix-todo-cops' into 'master'Rémy Coutable2018-10-041-79/+0
|\ | | | | | | | | Fix todo cops See merge request gitlab-org/gitlab-ce!21850
| * Fix UriDefaultParser copSemyon Pupkov2018-09-211-5/+0
| |
| * Fix UnneededRequireStatement copSemyon Pupkov2018-09-211-8/+0
| |
| * Remove unused cops from todoSemyon Pupkov2018-09-211-17/+0
| |
| * Fix DynamicAttributeDefinedStatically copSemyon Pupkov2018-09-211-18/+0
| |
| * Fix SpaceInsidePercentLiteralDelimiters copSemyon Pupkov2018-09-201-8/+0
| |
| * Fix SpaceInsideArrayLiteralBrackets copSemyon Pupkov2018-09-201-9/+0
| |
| * Fix SpaceBeforeFirstArg copSemyon Pupkov2018-09-201-14/+0
| |
* | Remove Gitlab::Git::Repository#rugged and Gollum codeAlejandro Rodríguez2018-10-021-1/+0
|/ | | | | | | | Cleanup code, and refactor tests that still use Rugged. After this, there should be no Rugged code that access the instance's repositories on non-test environments. There is still some rugged code for other tasks like the repository import task, but since it doesn't access any repository storage path it can stay.
* Fix rubocop Style/ZeroLengthPredicateSemyon Pupkov2018-09-181-14/+0
|
* Explicitly disable the Style/SafeNavigation copRémy Coutable2018-08-101-6/+0
| | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* Update rubocop to get rid of a warning in other MRLin Jen-Shin2018-07-091-6/+0
|
* Enable Capybara/FeatureMethods copWinnie Hellmann2018-07-051-4/+0
|
* Move the trigger-build script into one location to serve both omnibus and ↵refactor-trigger-build-scriptMarin Jankovski2018-06-141-1/+1
| | | | cloud-native triggers.
* Removed API endpoint and specsfj-36819-remove-v3-apiFrancisco Javier López2018-05-301-5/+0
|
* Move spec helpers/matchers/shared examples/contexts to their relevant folderRémy Coutable2018-04-231-4/+4
| | | | Signed-off-by: Rémy Coutable <remy@rymai.me>