mirror of
https://github.com/kemko/liquid.git
synced 2026-01-01 15:55:40 +03:00
TrailingCommaInArrayLiteral and TrailingCommaInHashLiteral were introduced in v0.53.0 and we're running v0.49.0. https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md#0530-2018-03-05
128 lines
1.8 KiB
YAML
128 lines
1.8 KiB
YAML
inherit_from: ./.rubocop_todo.yml
|
|
|
|
AllCops:
|
|
Exclude:
|
|
- 'performance/shopify/*'
|
|
- 'pkg/**'
|
|
|
|
Metrics/BlockNesting:
|
|
Max: 3
|
|
|
|
Metrics/ModuleLength:
|
|
Enabled: false
|
|
|
|
Metrics/ClassLength:
|
|
Enabled: false
|
|
|
|
Lint/AssignmentInCondition:
|
|
Enabled: false
|
|
|
|
Lint/AmbiguousOperator:
|
|
Enabled: false
|
|
|
|
Lint/AmbiguousRegexpLiteral:
|
|
Enabled: false
|
|
|
|
Lint/ParenthesesAsGroupedExpression:
|
|
Enabled: false
|
|
|
|
Lint/UnusedBlockArgument:
|
|
Enabled: false
|
|
|
|
Lint/EndAlignment:
|
|
EnforcedStyleAlignWith: variable
|
|
|
|
Lint/UnusedMethodArgument:
|
|
Enabled: false
|
|
|
|
Style/SingleLineBlockParams:
|
|
Enabled: false
|
|
|
|
Style/DoubleNegation:
|
|
Enabled: false
|
|
|
|
Style/StringLiteralsInInterpolation:
|
|
Enabled: false
|
|
|
|
Style/AndOr:
|
|
Enabled: false
|
|
|
|
Style/SignalException:
|
|
Enabled: false
|
|
|
|
Style/StringLiterals:
|
|
Enabled: false
|
|
|
|
Style/BracesAroundHashParameters:
|
|
Enabled: false
|
|
|
|
Style/NumericLiterals:
|
|
Enabled: false
|
|
|
|
Layout/SpaceInsideBrackets:
|
|
Enabled: false
|
|
|
|
Layout/SpaceBeforeBlockBraces:
|
|
Enabled: false
|
|
|
|
Style/Documentation:
|
|
Enabled: false
|
|
|
|
Style/ClassAndModuleChildren:
|
|
Enabled: false
|
|
|
|
Style/TrailingCommaInLiteral:
|
|
Enabled: false
|
|
|
|
Layout/IndentHash:
|
|
EnforcedStyle: consistent
|
|
|
|
Style/FormatString:
|
|
Enabled: false
|
|
|
|
Layout/AlignParameters:
|
|
EnforcedStyle: with_fixed_indentation
|
|
|
|
Layout/MultilineOperationIndentation:
|
|
EnforcedStyle: indented
|
|
|
|
Style/IfUnlessModifier:
|
|
Enabled: false
|
|
|
|
Style/RaiseArgs:
|
|
Enabled: false
|
|
|
|
Style/PreferredHashMethods:
|
|
Enabled: false
|
|
|
|
Style/RegexpLiteral:
|
|
Enabled: false
|
|
|
|
Style/SymbolLiteral:
|
|
Enabled: false
|
|
|
|
Performance/Count:
|
|
Enabled: false
|
|
|
|
Style/ConstantName:
|
|
Enabled: false
|
|
|
|
Layout/CaseIndentation:
|
|
Enabled: false
|
|
|
|
Style/ClassVars:
|
|
Enabled: false
|
|
|
|
Style/PerlBackrefs:
|
|
Enabled: false
|
|
|
|
Style/TrivialAccessors:
|
|
AllowPredicates: true
|
|
|
|
Style/WordArray:
|
|
Enabled: false
|
|
|
|
Style/MethodName:
|
|
Exclude:
|
|
- 'example/server/liquid_servlet.rb'
|