NETRAVE/.rubocop.yml
VetheonGames f96cf9e20a Setup a project dependant rubocop for ease of development.
We included the project specific settings files so that fellow VS Code users can just clone down the repo, and install the needed extensions.
2023-06-07 13:37:41 -06:00

15 lines
505 B
YAML

# This is an example Rubocop configuration file with all cops enabled.
# AllCops section defines global settings.
AllCops:
Exclude:
- 'vendor/**/*' # Exclude vendor directory
- 'db/schema.rb' # Exclude database schema file
- 'db/migrate/**/*' # Exclude database migration files
# Enables all cops.
# Set the value to `true` or `false` to enable/disable all cops.
# You can also enable/disable specific cops individually.
# By default, all cops are enabled.
inherit_from: .rubocop_todo.yml