34 lines
513 B
YAML
34 lines
513 B
YAML
##
|
|
# Plugins
|
|
require:
|
|
- standard
|
|
|
|
##
|
|
# Defaults: standard-rb
|
|
inherit_gem:
|
|
standard: config/base.yml
|
|
|
|
AllCops:
|
|
TargetRubyVersion: 3.2
|
|
Include:
|
|
- libexec/quran-json/*
|
|
- lib/quran-json/**/*.rb
|
|
- bin/*
|
|
|
|
##
|
|
# Enabled
|
|
Style/FrozenStringLiteralComment:
|
|
Enabled: true
|
|
|
|
##
|
|
# Disabled
|
|
Layout/MultilineMethodCallIndentation:
|
|
Enabled: false
|
|
Layout/ArgumentAlignment:
|
|
Enabled: false
|
|
Style/LambdaCall:
|
|
Enabled: false
|
|
Style/MixinUsage:
|
|
Exclude:
|
|
- 'bin/quran-json'
|
|
- 'libexec/quran-json/*'
|