-
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy path.rubocop.yml
More file actions
44 lines (36 loc) · 722 Bytes
/
.rubocop.yml
File metadata and controls
44 lines (36 loc) · 722 Bytes
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
44
plugins:
- rubocop-minitest
- rubocop-rake
AllCops:
NewCops: enable
TargetRubyVersion: 3.2
Exclude:
- 'vendor/**/*'
- 'tmp/**/*'
- 'pkg/**/*'
- 'ext/**/*'
- 'benchmark/**/*'
Metrics/AbcSize:
Exclude:
- 'test/**/*_test.rb'
Metrics/BlockLength:
Exclude:
- 'test/**/*'
- 'duckdb.gemspec'
Metrics/ClassLength:
Exclude:
- 'test/**/*_test.rb'
- 'lib/duckdb/prepared_statement.rb'
- 'lib/duckdb/appender.rb'
- 'lib/duckdb/connection.rb'
- 'lib/duckdb/value.rb'
Metrics/MethodLength:
Exclude:
- 'test/**/*_test.rb'
Metrics/ModuleLength:
Exclude:
- 'lib/duckdb/converter.rb'
Style/Documentation:
Enabled: false
Layout/LineLength:
Max: 120