Code Climate Engine to run Foodcritic
.codeclimate.yml
engines:
  foodcritic:
    enabled: trueThis engine accepts tags, cookbook_paths and include_rules in its
configuration. All values are optional:
engines:
  foodcritic:
    enabled: true
    config:
      tags:
      - "~FC011"
      - "~FC033"
      cookbook_paths:
      - libraries/mysql.rb
      - libraries/docker.rb
      include_rules:
      - rules/my_custom_rule.rb
      - rules/my_other_custom_rule.rbNOTE: cookbook_paths, when defined, are passed directly to Foodcritic and
any computed include_paths (which take into account your configured
exclude_paths) are ignored.