forked from eScholarship/jschol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.rubocop.yml
67 lines (52 loc) · 1.04 KB
/
.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
---
AllCops:
TargetRubyVersion: 3.0
Exclude:
- 'gems/**/*'
- 'node_modules/**/*'
NewCops: disable
Bundler/OrderedGems:
Enabled: false
Naming:
Enabled: false
Style:
Enabled: false
Layout:
Enabled: false
Metrics:
Enabled: false
Lint/ImplicitStringConcatenation:
Enabled: false
Lint/MissingSuper:
Enabled: false
Lint/NonLocalExitFromIterator:
Enabled: false
Lint/ShadowingOuterLocalVariable:
Enabled: false
Lint/UselessAssignment:
Exclude:
- 'app/dbCache.rb'
- 'app/loginApi.rb'
- 'app/searchApi.rb'
- 'app/socksMysql.rb'
- 'app/server.rb'
- 'app/statsPages.rb'
- 'app/unitPages.rb'
- 'config/puma.rb'
- 'tools/convert.rb'
- 'tools/statsCalc.rb'
- 'tools/loadTest.rb'
- 'util/nailgun.rb'
- 'splash/splashGen.rb'
- 'migrations/0006_itemOrderMulti.rb'
- 'tools/waitForServer.rb'
Lint/RescueException:
Enabled: false
Lint/RequireParentheses:
Enabled: false
Lint/Void:
Enabled: false
Security/Open:
Exclude:
- 'test/quick.rb'
- 'tools/statsHistory.rb'