Last active
July 15, 2020 22:17
-
-
Save loficafe-zx/53ff34a6fe5c4f93e613a93260e3c49f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require: | |
- rubocop-rails | |
- rubocop-rspec | |
AllCops: | |
Exclude: | |
- 'db/**/*' | |
- 'tmp/**/*' | |
- 'vendor/**/*' | |
- 'bin/**/*' | |
- 'log/**/*' | |
- 'node_modules/**/*' | |
- 'lib/tasks/heroku_clear_tasks.rake' | |
Metrics/AbcSize: | |
Max: 15 | |
Metrics/CyclomaticComplexity: | |
Max: 8 | |
Metrics/MethodLength: | |
Enabled: false | |
Metrics/PerceivedComplexity: | |
Max: 8 | |
Style/Documentation: | |
Enabled: false | |
Style/SpecialGlobalVars: | |
EnforcedStyle: use_perl_names | |
Layout/LineLength: | |
Max: 220 | |
Style/HashEachMethods: | |
Enabled: true | |
Safe: true | |
Style/HashTransformKeys: | |
Enabled: true | |
Safe: true | |
Style/HashTransformValues: | |
Enabled: true | |
Safe: true | |
Layout/SpaceAroundMethodCallOperator: | |
Enabled: true | |
Lint/RaiseException: | |
Enabled: true | |
Style/ExponentialNotation: | |
Enabled: false | |
Lint/StructNewOverride: | |
Enabled: true | |
Layout/EmptyLinesAroundAttributeAccessor: | |
Enabled: true | |
Style/SlicingWithRange: | |
Enabled: true | |
Rails/FilePath: | |
Enabled: false | |
Lint/DeprecatedOpenSSLConstant: | |
Enabled: true | |
Lint/DuplicateElsifCondition: | |
Enabled: true | |
Lint/MixedRegexpCaptureTypes: | |
Enabled: true | |
Style/AccessorGrouping: | |
Enabled: true | |
Style/ArrayCoercion: | |
Enabled: true | |
Style/BisectedAttrAccessor: | |
Enabled: true | |
Style/CaseLikeIf: | |
Enabled: true | |
Style/HashAsLastArrayItem: | |
Enabled: true | |
Style/HashLikeCase: | |
Enabled: true | |
Style/RedundantAssignment: | |
Enabled: true | |
Style/RedundantFetchBlock: | |
Enabled: false | |
Style/RedundantFileExtensionInRequire: | |
Enabled: true | |
Style/RedundantRegexpCharacterClass: | |
Enabled: true | |
Style/RedundantRegexpEscape: | |
Enabled: true | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment