dolphins7.skeleton/server/.rubocop.yml

48 lines
740 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/*/**
- nanoc/rules/*
- nanoc/lib/*
- bin/*
- test/*
Exclude:
- src/css/vendor/tail.css/bin/*
- src/tmp/*
- src/tmp/**/*
##
# Enabled
Style/FrozenStringLiteralComment:
Enabled: true
##
# Disabled
Layout/ArgumentAlignment:
Enabled: false
Layout/MultilineMethodCallIndentation:
Enabled: false
Layout/EmptyLineBetweenDefs:
Enabled: false
Style/TrivialAccessors:
Enabled: false