rubocopening master
This commit is contained in:
parent
1e43784cc2
commit
147b0a6626
54
.rubocop.yml
54
.rubocop.yml
|
@ -1,19 +1,19 @@
|
||||||
AllCops:
|
AllCops:
|
||||||
Includes:
|
Include:
|
||||||
- Rakefile
|
- '**/Rakefile'
|
||||||
- Gemfile
|
- '**/Gemfile'
|
||||||
- config.ru
|
- '**/config.ru'
|
||||||
- gem_rake_helper.rb
|
- '**/gem_rake_helper.rb'
|
||||||
Excludes:
|
Exclude:
|
||||||
- script/**
|
- 'script/**/*'
|
||||||
- vendor/**
|
- 'vendor/**/*'
|
||||||
- bin/**
|
- '**/tmp/**/*'
|
||||||
- middleman-core/lib/vendored-middleman-deps/**
|
- '**/bin/**/*'
|
||||||
- middleman-core/bin/**
|
- 'middleman-core/lib/middleman-core/step_definitions/**/*'
|
||||||
- middleman-core/fixtures/**
|
- 'middleman-templates/lib/middleman-templates/**/*'
|
||||||
- middleman-core/features/**
|
- 'middleman-core/fixtures/**/*'
|
||||||
- middleman-core/spec/**
|
- 'middleman-core/features/**/*'
|
||||||
- middleman-templates/lib/middleman-templates/**
|
- 'middleman-core/spec/**/*'
|
||||||
LineLength:
|
LineLength:
|
||||||
Enabled: false
|
Enabled: false
|
||||||
MethodLength:
|
MethodLength:
|
||||||
|
@ -26,3 +26,27 @@ Encoding:
|
||||||
Enabled: false
|
Enabled: false
|
||||||
HashSyntax:
|
HashSyntax:
|
||||||
EnforcedStyle: ruby19
|
EnforcedStyle: ruby19
|
||||||
|
SpaceAroundEqualsInParameterDefault:
|
||||||
|
EnforcedStyle: no_space
|
||||||
|
Blocks:
|
||||||
|
Enabled: false
|
||||||
|
PerlBackrefs:
|
||||||
|
Enabled: false
|
||||||
|
ClassAndModuleChildren:
|
||||||
|
Enabled: false
|
||||||
|
AssignmentInCondition:
|
||||||
|
Enabled: false
|
||||||
|
CyclomaticComplexity:
|
||||||
|
Enabled: false
|
||||||
|
HandleExceptions:
|
||||||
|
Enabled: false
|
||||||
|
EndAlignment:
|
||||||
|
AlignWith: variable
|
||||||
|
SignalException:
|
||||||
|
Enabled: false
|
||||||
|
RegexpLiteral:
|
||||||
|
Enabled: false
|
||||||
|
FormatString:
|
||||||
|
Enabled: false
|
||||||
|
CaseIndentation:
|
||||||
|
IndentWhenRelativeTo: end
|
||||||
|
|
Loading…
Reference in a new issue