mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
c617c2c165
* Bump rubocop from 0.93.1 to 1.0.0 Bumps [rubocop](https://github.com/rubocop-hq/rubocop) from 0.93.1 to 1.0.0. - [Release notes](https://github.com/rubocop-hq/rubocop/releases) - [Changelog](https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md) - [Commits](https://github.com/rubocop-hq/rubocop/compare/v0.93.1...v1.0.0) Signed-off-by: dependabot[bot] <support@github.com> * Rubocop 1.0 part 1 * 1.0.1 * 1.0.2 * 1.0.3 * 1.0.4 Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Reynolds <me@tdreyno.com>
88 lines
No EOL
1.7 KiB
YAML
88 lines
No EOL
1.7 KiB
YAML
require:
|
|
- rubocop-performance
|
|
|
|
AllCops:
|
|
NewCops: disable
|
|
TargetRubyVersion: 2.5
|
|
Include:
|
|
- "**/*.rb"
|
|
- "**/Rakefile"
|
|
- "**/Gemfile"
|
|
- "**/config.ru"
|
|
Exclude:
|
|
- "vendor/**/*"
|
|
- "**/tmp/**/*"
|
|
- "middleman-cli/lib/middleman-cli/templates/**/*"
|
|
|
|
Style/FrozenStringLiteralComment:
|
|
Enabled: true
|
|
EnforcedStyle: always
|
|
|
|
Security/YAMLLoad:
|
|
Enabled: false
|
|
Style/GuardClause:
|
|
Enabled: false
|
|
Layout/LineLength:
|
|
Enabled: false
|
|
Metrics/MethodLength:
|
|
Enabled: false
|
|
Style/Documentation:
|
|
Enabled: false
|
|
Metrics/AbcSize:
|
|
Enabled: false
|
|
Metrics/CyclomaticComplexity:
|
|
Enabled: false
|
|
Metrics/BlockLength:
|
|
Enabled: false
|
|
Metrics/ModuleLength:
|
|
Enabled: false
|
|
Metrics/PerceivedComplexity:
|
|
Enabled: false
|
|
Metrics/ClassLength:
|
|
Enabled: false
|
|
Lint/AmbiguousRegexpLiteral:
|
|
Enabled: false
|
|
Lint/AmbiguousBlockAssociation:
|
|
Enabled: false
|
|
Lint/UriEscapeUnescape:
|
|
Enabled: false
|
|
Lint/SuppressedException:
|
|
Enabled: false
|
|
Lint/ShadowedException:
|
|
Enabled: false
|
|
Naming/FileName:
|
|
Enabled: false
|
|
Naming/MethodParameterName:
|
|
Enabled: false
|
|
Naming/MemoizedInstanceVariableName:
|
|
Enabled: false
|
|
Naming/HeredocDelimiterNaming:
|
|
Enabled: false
|
|
Security/Eval:
|
|
Enabled: false
|
|
Style/ClassAndModuleChildren:
|
|
Enabled: false
|
|
Style/MissingRespondToMissing:
|
|
Enabled: false
|
|
Lint/MissingSuper:
|
|
Enabled: false
|
|
Lint/EmptyFile:
|
|
Enabled: false
|
|
Style/EvalWithLocation:
|
|
Enabled: false
|
|
Style/ClassVars:
|
|
Enabled: false
|
|
Style/GlobalVars:
|
|
Enabled: false
|
|
Style/Proc:
|
|
Enabled: false
|
|
Style/OptionalBooleanParameter:
|
|
Enabled: false
|
|
Style/AccessorGrouping:
|
|
Enabled: false
|
|
Style/RedundantRegexpEscape:
|
|
Enabled: false
|
|
Style/StringConcatenation:
|
|
Enabled: false
|
|
Style/RedundantSelfAssignment:
|
|
Enabled: false |