dolphins7.skeleton/twenty-client/.rubocop.yml

43 lines
620 B
YAML
Raw Normal View History

2024-03-13 13:15:47 +01:00
##
# 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/*
##
# Enabled
Style/FrozenStringLiteralComment:
Enabled: true
##
# Disabled
Layout/ArgumentAlignment:
Enabled: false
Layout/MultilineMethodCallIndentation:
Enabled: false
Layout/EmptyLineBetweenDefs:
Enabled: false
Style/TrivialAccessors:
Enabled: false