1
0
Fork 0
mirror of https://github.com/middleman/middleman.git synced 2022-11-09 12:20:27 -05:00
middleman--middleman/.rubocop.yml

70 lines
1.4 KiB
YAML
Raw Normal View History

2019-05-29 16:48:14 -04:00
require: rubocop-performance
AllCops:
2019-05-29 16:48:14 -04:00
TargetRubyVersion: 2.5
2014-04-29 13:48:40 -04:00
Include:
2019-05-29 16:48:14 -04:00
- "**/*.rb"
- "**/Rakefile"
- "**/Gemfile"
- "**/config.ru"
2014-04-29 13:48:40 -04:00
Exclude:
2019-05-29 16:48:14 -04:00
- "vendor/**/*"
- "**/tmp/**/*"
- "middleman-cli/lib/middleman-cli/templates/**/*"
2018-11-20 15:35:24 -05:00
Security/YAMLLoad:
Enabled: false
Style/GuardClause:
Enabled: false
Metrics/LineLength:
2014-03-25 19:54:16 -04:00
Enabled: false
Metrics/MethodLength:
Enabled: false
Style/Documentation:
Enabled: false
Metrics/AbcSize:
Enabled: false
Metrics/CyclomaticComplexity:
Enabled: false
Metrics/BlockLength:
2014-04-29 13:48:40 -04:00
Enabled: false
Metrics/ModuleLength:
2014-04-29 13:48:40 -04:00
Enabled: false
Metrics/PerceivedComplexity:
2014-04-29 13:48:40 -04:00
Enabled: false
Metrics/ClassLength:
2014-04-29 13:48:40 -04:00
Enabled: false
Lint/AmbiguousRegexpLiteral:
2014-04-29 13:48:40 -04:00
Enabled: false
Lint/AmbiguousBlockAssociation:
2014-04-29 13:48:40 -04:00
Enabled: false
Lint/UriEscapeUnescape:
2014-04-29 13:48:40 -04:00
Enabled: false
Lint/HandleExceptions:
2014-04-29 13:48:40 -04:00
Enabled: false
Lint/ShadowedException:
Enabled: false
Naming/FileName:
2016-01-14 14:21:42 -05:00
Enabled: false
Naming/UncommunicativeMethodParamName:
2015-01-08 08:57:38 -05:00
Enabled: false
Naming/MemoizedInstanceVariableName:
Enabled: false
Naming/HeredocDelimiterNaming:
Enabled: false
Security/Eval:
2015-01-08 08:57:38 -05:00
Enabled: false
Style/ClassAndModuleChildren:
Enabled: false
Style/MissingRespondToMissing:
2015-11-28 19:48:08 -05:00
Enabled: false
Style/MethodMissingSuper:
Enabled: false
2016-11-04 11:23:33 -04:00
Style/FrozenStringLiteralComment:
Enabled: false
Style/EvalWithLocation:
Enabled: false
Style/ClassVars:
Enabled: false
Style/GlobalVars:
2019-05-29 16:48:14 -04:00
Enabled: false