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
2019-10-03Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2018-09-05Fix LineBreakAroundConditionalBlock cop for a conditional after rescueRobert Speicher
Previously this would violate on the `if`: def a_method do_something rescue if condition do_something end end
2018-08-25Reject ruby interpolation in externalized stringsBob Van Landuyt
When using ruby interpolation in externalized strings, they can't be detected. Which means they will never be presented to be translated. To mix variables into translations we need to use `sprintf` instead. Instead of: _("Hello #{subject}") Use: _("Hello %{subject}) % { subject: 'world' }
2018-07-09Update rubocop to get rid of a warning in other MRLin Jen-Shin
2018-05-29Allow comment after if/unless clauseRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-01-11Adds Rubocop rule for line break around conditionals🙈 jacopo beschi 🙉