mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
rubocopening master
This commit is contained in:
parent
1e43784cc2
commit
147b0a6626
1 changed files with 40 additions and 16 deletions
56
.rubocop.yml
56
.rubocop.yml
|
@ -1,19 +1,19 @@
|
|||
AllCops:
|
||||
Includes:
|
||||
- Rakefile
|
||||
- Gemfile
|
||||
- config.ru
|
||||
- gem_rake_helper.rb
|
||||
Excludes:
|
||||
- script/**
|
||||
- vendor/**
|
||||
- bin/**
|
||||
- middleman-core/lib/vendored-middleman-deps/**
|
||||
- middleman-core/bin/**
|
||||
- middleman-core/fixtures/**
|
||||
- middleman-core/features/**
|
||||
- middleman-core/spec/**
|
||||
- middleman-templates/lib/middleman-templates/**
|
||||
Include:
|
||||
- '**/Rakefile'
|
||||
- '**/Gemfile'
|
||||
- '**/config.ru'
|
||||
- '**/gem_rake_helper.rb'
|
||||
Exclude:
|
||||
- 'script/**/*'
|
||||
- 'vendor/**/*'
|
||||
- '**/tmp/**/*'
|
||||
- '**/bin/**/*'
|
||||
- 'middleman-core/lib/middleman-core/step_definitions/**/*'
|
||||
- 'middleman-templates/lib/middleman-templates/**/*'
|
||||
- 'middleman-core/fixtures/**/*'
|
||||
- 'middleman-core/features/**/*'
|
||||
- 'middleman-core/spec/**/*'
|
||||
LineLength:
|
||||
Enabled: false
|
||||
MethodLength:
|
||||
|
@ -25,4 +25,28 @@ Documentation:
|
|||
Encoding:
|
||||
Enabled: false
|
||||
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