X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/exercices/?a=blobdiff_plain;f=.rubocop.yml;h=61ffc1a04425f47f030c712f4ea6a9a0830a3342;hb=278c83af8b2426d95f578e01e3bc679abf7b9d4b;hp=cc32da4b99e2e64bd3b053d4859c4ce4e5b6cf20;hpb=38a3c047d91acc25a3ceea6e770764f9f8c7fe5b;p=lhc%2Fweb%2Fwiklou.git diff --git a/.rubocop.yml b/.rubocop.yml index cc32da4b99..61ffc1a044 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1 +1,25 @@ -inherit_from: .rubocop_todo.yml +AllCops: + 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