Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-04-08Enable RSpec/DescribeSymbol; update .rubocop_todo.ymlRobert Speicher
2017-04-02Enable Style/Proc cop for rubocopmhasbini
2017-02-23Revert "Enable Style/DotPosition"Douwe Maan
This reverts commit e00fb2bdc2090e9cabeb1eb35a2672a882cc96e9. # Conflicts: # .rubocop.yml # .rubocop_todo.yml # lib/gitlab/ci/config/entry/global.rb # lib/gitlab/ci/config/entry/jobs.rb # spec/lib/gitlab/ci/config/entry/factory_spec.rb # spec/lib/gitlab/ci/config/entry/global_spec.rb # spec/lib/gitlab/ci/config/entry/job_spec.rb # spec/lib/gitlab/ci/status/build/factory_spec.rb # spec/lib/gitlab/incoming_email_spec.rb
2017-02-23Revert "Enable Style/BarePercentLiterals"Douwe Maan
This reverts commit 96bef54154e669f9a3e92c3a4bc76c0be3a52e48.
2017-02-23Update rubocop and rubocop-rspec and regenerate .rubocop_todo.ymlDouwe Maan
2017-02-23Update rubocop and rubocop-rspec and regenerate .rubocop_todo.ymlDouwe Maan
2017-02-23Regenerate .rubocop_todo.ymlDouwe Maan
2017-02-23Enable Style/ConditionalAssignmentDouwe Maan
2017-02-23Enable Style/ColonMethodCallDouwe Maan
2017-02-23Disable Style/BracesAroundHashParametersDouwe Maan
2017-02-23Enable Style/BarePercentLiteralsDouwe Maan
2017-02-23Enable Security/JSONLoadDouwe Maan
2017-02-23Enable Rails/ValidationDouwe Maan
2017-02-23Disable Rails/DynamicFindByDouwe Maan
2017-02-23Enable Performance/RedundantMatchDouwe Maan
2017-02-23Enable Performance/RedundantBlockCallDouwe Maan
2017-02-23Disable Lint/UnneededSplatExpansionDouwe Maan
2017-02-23Enable Lint/UnifiedIntegerDouwe Maan
2017-02-23Enable Performance/RedundantMergeDouwe Maan
2017-02-23Disable some more copsDouwe Maan
2017-02-23Disable a few RSpec copsDouwe Maan
2017-02-23Disable Lint/UnusedMethodArgumentDouwe Maan
2017-02-23Disable Style/TrailingCommaInLiteralDouwe Maan
2017-02-23Enable Style/SpaceInsideBracketsDouwe Maan
2017-02-23Enable Style/MutableConstantDouwe Maan
2017-02-23Enable Style/DotPositionDouwe Maan
2017-02-23Update .rubocop_todo.ymlDouwe Maan
2017-02-22No more and/orDouwe Maan
2017-02-13Enable `Lint/EmptyWhen` cop and correct offenseRobert Speicher
2017-02-11Enable `Style/RedundantException` cop and correct offenseRobert Speicher
2017-02-11Enable the `RSpec/ExpectActual` cop and correct offensesRobert Speicher
2017-02-11Explicitly disable the RSpec/BeEql copRobert Speicher
This is a little too picky, even for us.
2017-01-17Disable all cops in .rubocop_todo.ymlSean McGivern
Cops with a max level are auto-generated with that set to the current maximum, even when they're supposed to be ignored. For now, the best option is to manually disable them.
2017-01-11Fix Rubocop YAML config files to avoid CE->EE issuesGrzegorz Bizon
2017-01-06Update rubocop and rubocop-rspec to fix build errorsBrian Neel
2016-10-04Update RuboCop to 0.43.0 and update configurationRobert Speicher
`Style/VariableNumber` is explicitly disabled because I don't think we care if we name a variable `var_1` or `var1`.
2016-10-03Enable Lint/StringConversionInInterpolation cop and autocorrect offensesRobert Speicher
2016-09-14Regenerate .rubocop_todo.yml based on rubocop 0.42.0Robert Speicher
2016-08-06Enable Style/SpaceAroundEqualsInParameterDefault copGabriel Mazetto
2016-07-29Merge branch 'rubocop/enable-access-modifiers-cops' into 'master' Robert Speicher
Enable Rubocop cops that check access modifiers ## What does this MR do? This MR enables Rubocop cops that detect methods that should be restricted but are the part of public API because of access modifiers used improperly. This also fixes existing offenses. ## Why was this MR needed? Some method in our codebase are public instead of being private because it is sometimes difficult to get it right without static analysis. ## What are the relevant issue numbers? See #17478 Closes #17372 See merge request !5014
2016-07-20Enable Style/MultilineTernaryOperator rubocop copGrzegorz Bizon
Avoid multi-line ?: (the ternary operator). Use if/unless instead. See #17478
2016-07-19Enable Rubocop cops for invalid access modifiersGrzegorz Bizon
This enables following cops: Check for useless access modifiers Lint/UselessAccessModifier Checks for attempts to use `private` or `protected` to set the visibility of a class method, which does not work. Lint/IneffectiveAccessModifier This also disables two false possitives in concerns.
2016-07-13Disable all cops with offenses.Connor Shea
2016-07-13Resolve feedback.Connor Shea
2016-07-13Disable two cops as recommended.Connor Shea
2016-07-13Remove some disabled cops.Connor Shea
2016-07-13Update rubocop to 0.41.2Z.J. van de Weg
https://github.com/bbatsov/rubocop/blob/v0.41.2/CHANGELOG.md