Skip to content

Commit 119b3fc

Browse files
committed
884: fix rubocop
1 parent 71311f7 commit 119b3fc

2 files changed

Lines changed: 27 additions & 1 deletion

File tree

.rubocop.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
AllCops:
2+
DisabledByDefault: true
3+
4+
Security:
5+
Enabled: true
6+
7+
Bundler/DuplicatedGem:
8+
Enabled: true
9+
Bundler/InsecureProtocolSource:
10+
Enabled: true
11+
Layout/IndentationStyle:
12+
Enabled: true
13+
Layout/SpaceInsideRangeLiteral:
14+
Enabled: true
15+
Lint:
16+
Enabled: true
17+
Lint/RaiseException:
18+
Enabled: true
19+
Naming/AsciiIdentifiers:
20+
Enabled: true
21+
Naming/ClassAndModuleCamelCase:
22+
Enabled: true
23+
Naming/ConstantName:
24+
Enabled: true
25+
Naming/FileName:
26+
Enabled: true

example.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
ta = TokyoApi.new(host: 'localhost:9000', username: 'tokyo', password: 'Passw0rd!', scheme: 'http')
88

99
require 'pry-debugger'
10-
binding.pry
10+
binding.pry # rubocop:disable Lint/Debugger

0 commit comments

Comments
 (0)