Sha256: 10a0c26adcf95e960a49e5d49464f2a362a99c8dcbcd9c697204e75785765df7
Contents?: true
Size: 1.76 KB
Versions: 4
Compression:
Stored size: 1.76 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' Style/Documentation: Enabled: false 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
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
tdc-0.2.2 | .rubocop.yml |
tdc-0.2.1 | .rubocop.yml |
tdc-0.2.0 | .rubocop.yml |
tdc-0.1.2 | .rubocop.yml |