Make rubocop pass: - fix a trivial double quotes error - ignore 'node_modules' useful when one ran 'npm install' Change-Id: Id1ab83df0bec4fc7b223f33016c8f18316509b7a
26 lines
423 B
YAML
26 lines
423 B
YAML
AllCops:
|
|
Exclude:
|
|
- 'extensions/**/*'
|
|
- 'node_modules/**/*'
|
|
- 'skins/**/*'
|
|
- 'tests/frontend/node_modules/**/*'
|
|
- 'vendor/**/*'
|
|
StyleGuideCopsOnly: true
|
|
|
|
Metrics/LineLength:
|
|
Max: 100
|
|
|
|
Metrics/MethodLength:
|
|
Enabled: false
|
|
|
|
Style/Alias:
|
|
Enabled: false
|
|
|
|
Style/SignalException:
|
|
Enabled: false
|
|
|
|
Style/StringLiterals:
|
|
EnforcedStyle: single_quotes
|
|
|
|
Style/TrivialAccessors:
|
|
ExactNameMatch: true
|