X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=.rubocop.yml;h=61ffc1a04425f47f030c712f4ea6a9a0830a3342;hb=1996e35ec7d4f1453162d3f1bdf5991448d9e968;hp=00479d1357acc7d9eb2f6623c6a705439f1bc825;hpb=44bde95bf7fa747ec2473d9e20210d6058b0cc8f;p=lhc%2Fweb%2Fwiklou.git diff --git a/.rubocop.yml b/.rubocop.yml index 00479d1357..61ffc1a044 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,8 +1,25 @@ -inherit_from: .rubocop_todo.yml - AllCops: - Exclude: - - 'extensions/**/*' - - 'skins/**/*' - - 'tests/frontend/node_modules/**/*' - - 'vendor/**/*' + Exclude: + - 'extensions/**/*' + - '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