al-quran.reflectslight.io/.rubocop.yml

39 lines
614 B
YAML
Raw Normal View History

2022-10-31 19:34:23 +01:00
##
# Defaults
AllCops:
2023-03-11 18:31:44 +01:00
TargetRubyVersion: 3.2
Include:
- Rakefile.rb
- rules/*.rules
- rules/**/**/*.rules
- lib/*.rb
- lib/**/*.rb
- lib/**/**.rb
2022-10-31 19:34:23 +01:00
##
2023-03-11 18:31:44 +01:00
# Defaults: standard-rb
2022-10-31 19:34:23 +01:00
require:
- standard
inherit_gem:
standard: config/base.yml
##
2023-03-11 18:31:44 +01:00
# Extra
2022-10-31 19:34:23 +01:00
Style/FrozenStringLiteralComment:
Enabled: true
2023-03-12 20:50:19 +01:00
Layout/SpaceInsideHashLiteralBraces:
Enabled: true
2022-10-31 19:34:23 +01:00
##
2023-03-11 18:31:44 +01:00
# Disabled
2022-10-31 19:34:23 +01:00
Layout/MultilineMethodCallIndentation:
Enabled: false
Layout/ArgumentAlignment:
Enabled: false
2023-03-11 18:31:44 +01:00
Layout/ArrayAlignment:
Enabled: false
2023-03-25 12:02:55 +01:00
Layout/ExtraSpacing:
Enabled: false
2022-10-31 19:34:23 +01:00
Style/TrivialAccessors:
Enabled: false