wiki.techinc.nl/.rubocop.yml
Antoine Musso 405f2225e6 rubocop: ignore node_modules and fix a single offense
Make rubocop pass:
- fix a trivial double quotes error
- ignore 'node_modules' useful when one ran 'npm install'

Change-Id: Id1ab83df0bec4fc7b223f33016c8f18316509b7a
2015-07-10 12:41:47 +02:00

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