...
Code Block |
---|
inherit_gem:
bixby: bixby_default.yml
|
Customizing the Configuration
...
Validate all files:
Code Block |
---|
rubocop
|
Validate a specific file:
Code Block |
---|
rubocop path/to/your/file
|
Autocorrect problems
If RuboCop finds style violations, you can ask it to try automatically fixing them.
...
Auto-fix all files:
Code Block |
---|
rubocop -a
|
Ignoring errors
Info |
---|
It is recommended that all errors reported by RuboCop be fixed. |
...