dolphins7.skeleton/cli/.rubocop.yml
0x1eef 2bf57351ea Re-implement the client
Not all website features are working, but this commit is mostly
focused on an architecture that can be used in future projects
2024-07-31 22:48:00 -03:00

44 lines
667 B
YAML

##
# DON'T EDIT THIS FILE DIRECTLY.
# Edit '.rubocop.yml' at the root of the project instead.
##
##
# Plugins
require:
- standard
##
# Defaults: standard-rb
inherit_gem:
standard: config/base.yml
##
# All cops
AllCops:
TargetRubyVersion: 3.2
Include:
- lib/*.rb
- lib/**/*.rb
- libexec/*
- libexec/*/**
- bin/*
- test/*
Exclude:
- src/css/vendor/tail.css/bin/*
##
# Enabled
Style/FrozenStringLiteralComment:
Enabled: true
##
# Disabled
Layout/ArgumentAlignment:
Enabled: false
Layout/MultilineMethodCallIndentation:
Enabled: false
Layout/EmptyLineBetweenDefs:
Enabled: false
Style/TrivialAccessors:
Enabled: false