Skip to content

Commit

Permalink
Disabled rubocop annoying rules
Browse files Browse the repository at this point in the history
fixes #2

Once the gem is stable enough maybe we can review this rules, in the
meantime the code needed to fix such rules would make the project worse
in the short term and add extra unnecessary work.
  • Loading branch information
gtrias committed Nov 7, 2024
1 parent 5c19169 commit 903f413
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,30 @@ Style/StringLiterals:

Style/StringLiteralsInInterpolation:
EnforcedStyle: double_quotes

Metrics/AbcSize:
Enabled: false

Metrics/CyclomaticComplexity:
Enabled: false

Metrics/MethodLength:
Enabled: false

Metrics/PerceivedComplexity:
Enabled: false

Metrics/ParameterLists:
Enabled: false

Layout/LineLength:
Enabled: false

Style/PercentLiteralDelimiters:
Enabled: false

Lint/UnusedMethodArgument:
Enabled: false

Metrics/BlockLength:
Enabled: false

0 comments on commit 903f413

Please sign in to comment.