Sha256: f601527109ed5706a8a496957f8ee9b62877ae486a6837179f5187b250801cc7
Contents?: true
Size: 1.71 KB
Versions: 1
Compression:
Stored size: 1.71 KB
Contents
require: - ./lib/rubocop/cul.rb inherit_from: - rubocul_rules_bundler.yml - rubocul_rules_performance.yml - rubocul_rules_rails.yml - rubocul_rules_rspec.yml - rubocul_rules_security.yml AllCops: TargetRubyVersion: 2.7 # Disable any new "pending" cops that are introduced in a minor version update of rubocop. # We only want to opt into these explicitly, or accept them when we update to a new MAJOR # version of rubocop. See: https://docs.rubocop.org/rubocop/versioning.html#pending-cops NewCops: disable # DisabledByDefault: true DisplayCopNames: true Exclude: - 'db/**/*' - 'script/**/*' - 'bin/**/*' - 'tmp/**/*' - 'vendor/**/*' - 'node_modules/**/*' - 'app/javascript/**/*' Layout/HashAlignment: SupportedHashRocketStyles: - key - table SupportedColonStyles: - key - table Metrics/BlockLength: IgnoredMethods: - 'describe' # rspec - 'context' # rspec - 'namespace' # rake - 'task' # rake # Documentation is great, but we're not currently forcing people to add a top level comment # to all classes and modules. Style/Documentation: Enabled: false Style/RedundantSelf: Enabled: false Style/HashSyntax: # We may change this at some point, but it'll take some getting used to. To be safe, we're # forcing explicit hash literal values for now. EnforcedShorthandSyntax: never Layout/FirstHashElementIndentation: EnforcedStyle: consistent Style/BlockDelimiters: EnforcedStyle: braces_for_chaining Style/ClassAndModuleChildren: Enabled: false Style/WordArray: Enabled: false Style/SymbolArray: Enabled: false RSpec/ExpectInHook: Enabled: false # TODO: Decide how we feel about this later Naming/VariableNumber: Enabled: false
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rubocul-4.0.5 | rubocul_default.yml |