mirror of
https://github.com/Shopify/liquid.git
synced 2026-01-26 12:14:58 +00:00
29 lines
508 B
YAML
29 lines
508 B
YAML
inherit_gem:
|
|
rubocop-shopify: rubocop.yml
|
|
|
|
inherit_from:
|
|
- .rubocop_todo.yml
|
|
|
|
require: rubocop-performance
|
|
|
|
Performance:
|
|
Enabled: true
|
|
|
|
AllCops:
|
|
NewCops: disable
|
|
SuggestExtensions: false
|
|
Exclude:
|
|
- 'vendor/bundle/**/*'
|
|
|
|
Naming/MethodName:
|
|
Exclude:
|
|
- 'example/server/liquid_servlet.rb'
|
|
|
|
Style/ClassMethodsDefinitions:
|
|
Enabled: false
|
|
|
|
# liquid filter calls were being mistaken to be calls on arrays
|
|
Style/ConcatArrayLiterals:
|
|
Exclude:
|
|
- 'test/integration/standard_filter_test.rb'
|