Skip to content
Snippets Groups Projects
Select Git revision
  • master default
  • v0.52.5
  • v0.52.4
  • v0.52.3
  • v0.52.2
  • v0.52.1
  • v0.52.0
  • v0.51.0
  • v0.50.0
  • v0.49.0
10 results

.rubocop.yml

Blame
  • .rubocop.yml 586 B
    # -*- coding: utf-8 -*-
    # vim: ft=yaml
    ---
    # General overrides used across formulas in the org
    Layout/LineLength:
      # Increase from default of `80`
      # Based on https://github.com/PyCQA/flake8-bugbear#opinionated-warnings (`B950`)
      Max: 88
    Metrics/BlockLength:
      IgnoredMethods:
        - control
        - describe
      # Increase from default of `25`
      Max: 30
    Security/YAMLLoad:
      Exclude:
        - test/integration/**/_mapdata.rb
    
    # General settings across all cops in this formula
    AllCops:
      NewCops: enable
    
    # Any offenses that should be fixed, e.g. collected via. `rubocop --auto-gen-config`