Sha256: 397d50b195f20a16ba96fd830398e731673b1330f33b18dd846b4fe1ce1cf899
Contents?: true
Size: 1.6 KB
Versions: 29
Compression:
Stored size: 1.6 KB
Contents
require: rubocop-rake AllCops: TargetRubyVersion: 2.7 DisplayCopNames: true ExtraDetails: true NewCops: enable Exclude: - "_/**/*" - "spec/samples/**/*" - "bin/*" - ".builders/**/*" - vendor/bundle/**/* Metrics/BlockLength: Exclude: - "**/spec/**/*" - "*.gemspec" AllowedMethods: - configure - context - define - describe - draw - factory - feature - guard - included - it - let - let! - scenario - setup - shared_context - shared_examples - shared_examples_for - transaction Metrics/MethodLength: Max: 25 Layout/LineLength: Max: 200 # Ignores annotate output AllowedPatterns: ['\A# \*\*'] IgnoreCopDirectives: true Lint/MissingSuper: Exclude: - '**/*' Layout/HashAlignment: Exclude: - "**/*" Lint/UnusedMethodArgument: AllowUnusedKeywordArguments: true Style/BlockComments: Enabled: false Include: - "**/spec/*" # My Preferences - Start Metrics/ClassLength: Enabled: false Metrics/ModuleLength: Exclude: - "**/spec/**/*" Naming/MemoizedInstanceVariableName: Enabled: false Naming/VariableNumber: Exclude: - "**/spec/**/*" Naming/AccessorMethodName: Exclude: - "**/*builder*.rb" Style/EmptyMethod: Exclude: - "**/spec/**/*" Metrics/ParameterLists: Exclude: - "**/spec/**/*" Layout/EmptyLineBetweenDefs: Exclude: - "**/spec/**/*" Style/Documentation: Enabled: false Lint/AmbiguousBlockAssociation: Exclude: - "**/spec/**/*" Style/AccessorGrouping: Enabled: false Layout/SpaceBeforeComma: Enabled: false # My Preferences - End
Version data entries
29 entries across 29 versions & 1 rubygems