Skip to content
This repository was archived by the owner on Aug 21, 2025. It is now read-only.

Commit 6126bec

Browse files
committed
Add Rubocop configuration
1 parent fc79686 commit 6126bec

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.rubocop.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
AllCops:
2+
Exclude:
3+
- vendor/**/*
4+
NewCops: enable
5+
6+
Metrics/BlockLength:
7+
Exclude:
8+
- fastlane/Fastfile
9+
10+
Metrics/MethodLength:
11+
Max: 30
12+
13+
Layout/LineLength:
14+
Max: 180
15+
16+
Naming/VariableNumber:
17+
Exclude:
18+
- fastlane/Fastfile
19+
20+
Style/HashSyntax:
21+
EnforcedShorthandSyntax: never

0 commit comments

Comments
 (0)