Files
sass/.rubocop.yml
2014-07-18 13:10:35 -07:00

123 lines
3.4 KiB
YAML

AccessorMethodName:
# We have good reasons for choosing our method names.
Enabled: false
AlignParameters:
# Natalie doesn't like to align parameters to the method call.
Enabled: false
BlockNesting:
# We'll catch this in code review. There are some legitimate uses.
Enabled: false
CharacterLiteral:
# Character literals are pretty useful when working with text like we do.
Enabled: false
ClassLength:
# It's not worth bending over backwards to avoid long classes.
Enabled: false
CollectionMethods:
PreferredMethods:
collect: 'map'
reduce: 'inject'
detect: 'find'
find_all: 'select'
CyclomaticComplexity:
# It's difficult to reason about what will reduce cyclomatic complexity.
Enabled: false
Documentation:
# TODO: We need to add a bunch of docs before we can enable this.
Enabled: false
DotPosition:
# This check doesn't want chained method invocation to end with a dot.
# But we like to do that.
Enabled: false
EmptyLineBetweenDefs:
AllowAdjacentOneLineDefs: true
Encoding:
# We use utf-8 comments when utf-8 characters are in use.
Enabled: false
EndAlignment:
# Our alignment style differs significantly
# and this doesn't seem to be a big deal.
Enabled: false
FavorSprintf:
# We like the string % operator.
Enabled: false
HandleExceptions:
# We legitimately ignore exceptions in some cases and this is easy to catch in code review.
Enabled: false
HashSyntax:
# We are a 1.8 compatable project still.
Enabled: false
HashMethods:
# has_xxx? reads better.
Enabled: false
IfUnlessModifier:
# We don't feel strongly about this.
Enabled: false
IndentationConsistency:
# We use indentation to convey meaning more often than we screw it up.
Enabled: false
Lambda:
# We are a 1.8 compatible project still.
Enabled: false
LineLength:
Enabled: true
Max: 100
Loop:
# This isn't a big deal.
Enabled: false
MethodLength:
# TODO: This max should actually be 25 but that will require significant refactoring.
Max: 50
CountComments: false
ModuleFunction:
# The module_function declaration makes methods private so it means you can't use the module as a module.
Enabled: false
ParenthesesAroundCondition:
AllowSafeAssignment: true
PerlBackrefs:
# We like perl backrefs.
Enabled: false
PredicateName:
# We have good reasons for choosing our method names.
Enabled: false
RaiseArgs:
# We prefer "raise Exception.new(msg)".
EnforcedStyle: compact
RedundantReturn:
# We allow explicit returns for multiple return values.
AllowMultipleReturnValues: true
Semicolon:
# Makes a good line separator
Enabled: false
SignalException:
# We like saying raise.
Enabled: false
SingleLineBlockParams:
# We have good reasons for choosing our argument names.
Enabled: false
SingleLineMethods:
# We like single line methods for simple methods.
Enabled: false
SpaceAroundBlockBraces:
# We prefer "foo {|arg| body}".
EnforcedStyle: no_space_inside_braces
SpaceBeforeBlockParameters: false
SpaceInsideHashLiteralBraces:
EnforcedStyle: no_space
StringLiterals:
# They say to not use double quoted strings unless there is interpolation.
# While this gives a marginal parse time speedup, it makes working with
# strings annoying.
Enabled: false
TrailingComma:
Enabled: false
TrivialAccessors:
AllowPredicates: true
ExactNameMatch: true
WhenThen:
# We like semi-colons.
Enabled: false
WhileUntilModifier:
# We don't feel strongly about this.
Enabled: false