https://github.com/servactory/rubocop
Styling for Ruby Gems & Rails projects
https://github.com/servactory/rubocop
Last synced: 4 months ago
JSON representation
Styling for Ruby Gems & Rails projects
- Host: GitHub
- URL: https://github.com/servactory/rubocop
- Owner: servactory
- License: mit
- Created: 2024-11-02T11:24:24.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-11-29T21:05:02.000Z (7 months ago)
- Last Synced: 2025-12-28T16:59:17.115Z (6 months ago)
- Language: Ruby
- Homepage: https://servactory.com
- Size: 39.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
A set of tools for building reliable services of any complexity.
# Servactory style for RuboCop
## Installation
First add this to your Gemfile:
```ruby
gem "servactory-rubocop", require: false, group: %i[development]
```
Then run `bundle`, then `bundle binstubs rubocop`.
Then add a default `.rubocop.yml` file in the root of your application with:
```yml
inherit_gem:
servactory-rubocop: rubocop-rails.yml
# or
# servactory-rubocop: rubocop-gem.yml
```
Now you can run `./bin/rubocop` to check for compliance and `./bin/rubocop -a` to automatically fix violations.
## Contributing
This project is intended to be a safe, welcoming space for collaboration.
Contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
We recommend reading the [contributing guide](https://servactory.com/CONTRIBUTING) as well.
## License
Servactory is available as open source under the terms of the [MIT License](./LICENSE).