https://github.com/nedap/caren-rubocop
The Rubocop configuration for the developers of Caren.nl
https://github.com/nedap/caren-rubocop
healthcare
Last synced: 4 months ago
JSON representation
The Rubocop configuration for the developers of Caren.nl
- Host: GitHub
- URL: https://github.com/nedap/caren-rubocop
- Owner: nedap
- Created: 2025-04-03T09:52:29.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-17T19:46:40.000Z (12 months ago)
- Last Synced: 2025-07-28T23:51:17.249Z (11 months ago)
- Topics: healthcare
- Homepage:
- Size: 12.7 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# caren-rubocop
A RuboCop configuration focused on enforcing best practices and coding conventions used by Team Caren.
The library contains default settings and overrides for Ruby and Rails projects. This gem also
requires default plugins, for example `rubocop-performance`, `rubocop-rails` and `rubocop-factory_bot`.
## Installation
Add this line to your application's `.rubocop.yml`:
```yaml
inherit_from: https://raw.githubusercontent.com/nedap/caren-rubocop/main/.rubocop.yml
```
## Usage
The default configuration of this project targets Ruby 3.2. You can specify a different target in the project's `.rubocop.yml`:
```yaml
inherit_from: https://raw.githubusercontent.com/nedap/caren-rubocop/main/.rubocop.yml
AllCops:
TargetRubyVersion: 3.0.2
```