Sha256: 673e7893d7988c7b4b5c8846e5afe515c6b16b36a56285c0eac64b97e05be083
Contents?: true
Size: 1.82 KB
Versions: 2
Compression:
Stored size: 1.82 KB
Contents
require: - rubocop-rspec AllCops: TargetRubyVersion: 2.5 Exclude: - 'bin/**/*' Layout/EmptyLinesAroundAttributeAccessor: Enabled: true # Rubocop and I cannot agree. Layout/MultilineMethodCallBraceLayout: Enabled: false Layout/SpaceAroundMethodCallOperator: Enabled: true Lint/RaiseException: Enabled: true Lint/StructNewOverride: Enabled: true Metrics/BlockLength: Enabled: false Naming/MemoizedInstanceVariableName: EnforcedStyleForLeadingUnderscores: required RSpec/AnyInstance: Enabled: false RSpec/ExampleLength: Max: 15 Metrics/LineLength: Max: 120 RSpec/DescribeClass: Enabled: false RSpec/DescribedClass: Enabled: false RSpec/NotToNot: EnforcedStyle: to_not RSpec/LeadingSubject: Enabled: false RSpec/MessageSpies: Enabled: false RSpec/MultipleExpectations: Max: 3 RSpec/SubjectStub: Enabled: false Style/BlockDelimiters: Enabled: true EnforcedStyle: line_count_based BracesRequiredMethods: - 'let' - 'subject' Style/Documentation: Enabled: false Style/EmptyMethod: EnforcedStyle: expanded Style/ExponentialNotation: Enabled: true # We can ignore this small performance improvement. Style/FrozenStringLiteralComment: Enabled: false Style/HashEachMethods: Enabled: true Style/HashTransformKeys: Enabled: true Style/HashTransformValues: Enabled: true # We like to use the hash rocket in rake files. Style/HashSyntax: Exclude: - 'Rakefile' # No need to mention StandardError. Style/RescueStandardError: EnforcedStyle: implicit Style/SlicingWithRange: Enabled: false # We'll just use double quotes everywhere. Style/StringLiterals: EnforcedStyle: double_quotes # I prefer not to use %i or %I for an array of symbols. Style/SymbolArray: Enabled: false # We are not going to optimize by freezing strings. Style/MutableConstant: Enabled: false
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
tdc-0.3.0 | .rubocop.yml |
tdc-0.2.4 | .rubocop.yml |