-
Notifications
You must be signed in to change notification settings - Fork 11
/
.rubocop.yml
43 lines (39 loc) · 967 Bytes
/
.rubocop.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
require: rubocop-jekyll
inherit_gem:
rubocop-jekyll: '.rubocop.yml'
AllCops:
Exclude:
- script/**/*
- vendor/**/*
- tmp/**/*
Layout/ArrayAlignment:
Exclude:
- 'features/support/helpers.rb'
Layout/ParameterAlignment:
Exclude:
- 'features/support/formatter.rb'
Layout/LineLength:
Exclude:
- ./**/*.gemspec
- ./**/Gemfile
- !ruby/regexp /features\/.*.rb/
Naming/MemoizedInstanceVariableName:
Exclude:
- 'lib/jekyll/theme_drop.rb'
- 'test/fixtures/another-test-plugin/lib/another-test-plugin.rb'
- 'test/fixtures/test-plugin/lib/test-plugin.rb'
Style/ClassAndModuleChildren:
Exclude:
- 'test/helper.rb'
Style/SafeNavigation:
Exclude:
- 'lib/jekyll-data/theme_data_reader.rb'
Style/SingleLineMethods:
Exclude:
- 'features/support/helpers.rb'
Style/TrailingCommaInArrayLiteral:
Exclude:
- 'test/helper.rb'
Style/TrailingCommaInHashLiteral:
Exclude:
- 'features/support/formatter.rb'