File: .rubocop.yml

package info (click to toggle)
ruby-snaky-hash 2.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 212 kB
  • sloc: ruby: 332; makefile: 4; sh: 4
file content (24 lines) | stat: -rw-r--r-- 440 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
inherit_from: .rubocop_todo.yml

inherit_gem:
  rubocop-lts: rubocop-lts.yml

require:
  - 'rubocop-performance'
  - 'rubocop-rake'
  - 'rubocop-rspec'
  - 'rubocop-thread_safety'

AllCops:
  DisplayCopNames: true # Display the name of the failing cops

Style/StringLiterals:
  Enabled: true
  EnforcedStyle: double_quotes

Style/StringLiteralsInInterpolation:
  Enabled: true
  EnforcedStyle: double_quotes

Metrics/LineLength:
  Max: 120