forked from vwochnik/jekyll-autoprefixer
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop.yml
39 lines (30 loc) · 764 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
# Default rules
# See: https://docs.rubocop.org/rubocop/cops.html
AllCops:
NewCops: enable
# RubyGems MFA
Gemspec/RequireMFA:
Enabled: false
# Max line length
Layout/LineLength:
Enabled: true
Max: 160
# Don't check methods length
Metrics/MethodLength:
Enabled: false
# snake_case file name exclusions
Naming/FileName:
Enabled: true
Exclude: ["lib/jekyll-autoprefixer.rb"]
# Allow parentheses on methods with no arguments
Style/DefWithParentheses:
Enabled: false
# Don't require top-level documentation
Style/Documentation:
Enabled: false
# Allow current directory/dots in expand_path arguments
Style/ExpandPathArguments:
Enabled: false
# Don't add frozen_string_literal magic comment
Style/FrozenStringLiteralComment:
Enabled: false