c691d39ecf
- Update Gemfile.saas to use path: "saas" instead of GitHub source - Update config/database.yml to reference local saas/ directory - Update bin/setup to source saas/bin/setup directly - Remove redundant dotfiles (ruby-version, gitignore, rubocop, github workflows) - Add saas/db exclusions to root rubocop config
16 lines
376 B
YAML
16 lines
376 B
YAML
# Omakase Ruby styling for Rails
|
|
inherit_gem: { rubocop-rails-omakase: rubocop.yml }
|
|
|
|
# Overwrite or add rules to create your own house style
|
|
#
|
|
# # Use `[a, [b, c]]` not `[ a, [ b, c ] ]`
|
|
# Layout/SpaceInsideArrayLiteralBrackets:
|
|
# Enabled: false
|
|
|
|
AllCops:
|
|
Exclude:
|
|
- 'db/migrate/**/*'
|
|
- 'db/schema*.rb'
|
|
- 'saas/db/migrate/**/*'
|
|
- 'saas/db/saas_schema.rb'
|