Automatic Solidus code style checking tool. A RuboCop extension focused on enforcing Solidus best practices and coding conventions.
Add this line to your application's Gemfile:
gem 'rubocop-solidus', require: falseAnd then execute:
$ bundle install
Or install it yourself as:
$ gem install rubocop-solidus
To Start using this extension in your application add the following lines to your .rubocop.yml file
require:
- rubocop-solidusAfter this^, simply use the rubocop command to start linting your Ruby(.rb) files.
We recommend to run rubocop solidus cops on ERB files. The simplest method to do this is via erblint
gem 'erb_lint'This is the most basic ERBlint config that can be used to run all and only the Solidus cops in any project
---
EnableDefaultLinters: false
linters:
Rubocop:
enabled: true
rubocop_config:
inherit_from:
- .rubocop.yml
only:
- Solidus# From project directory
bundle exec erblint .Any cop that supports autocorrect for rubocop implicitly supports autocorrect for ERB files as well.
# From project directory
bundle exec erblint -a .You can read about each cop supplied by RuboCop Solidus in the docs.
Bug reports and pull requests are welcome on GitHub at https://github.com/solidusio/rubocop-solidus.
To contribute a new cop, please see the sections below.
To create a new cop, run the following command:
$ bundle exec rake 'new_cop[Solidus/NameOfTheCop]'and then follow the instructions on the screen.
Changelog entries are just files under the changelog/ folder that will be merged
into CHANGELOG.md at release time. You can create new changelog entries like this:
$ bundle exec rake changelog:new|fix|changeThe type of the changelog correspond to "new feature", "bug-fix" and "changed" entries in the changelog.
Here are a few examples:
* [#46](https://github.com/solidusio/rubocop-solidus/issues/46): **(Breaking)** Remove support for old Ruby versions. ([@MassimilianoLattanzio][])
* [#4](https://github.com/solidusio/rubocop-solidus/pull/4): Update CHANGELOG. ([@piyushswain][])- Create one file
changelog/{type}_{some_description}.md, wheretypeisnew(New feature),fixorchange, andsome_descriptionis unique to avoid conflicts. Taskchangelog:fix(or:newor:change) can help you. - Mark it up in Markdown syntax.
- The entry should be a single line, starting with
*(an asterisk and a space). - If the change has a related GitHub issue (e.g. a bug fix for a reported issue), put a link to the issue as
[#123](https://github.com/solidusio/rubocop-solidus/issues/123):. - Describe the brief of the change. The sentence should end with a punctuation.
- If this is a breaking change, mark it with
**(Breaking)**. - At the end of the entry, add an implicit link to your GitHub user page as
([@username][]).
To release a new version, run the following command:
$ bundle exec rake cut_release:major|minor|patchand then follow the instructions on the screen.
The type of the release is determined by:
majorif there are breaking changesminorif there are new cops or new featurespatchif there are only bug fixes
To deploy the new version to RubyGems, run the following command:
$ bundle exec rake releaseThe gem is available as open source under the terms of the MIT License.