summaryrefslogtreecommitdiff
path: root/spec/.rubocop.yml
diff options
context:
space:
mode:
Diffstat (limited to 'spec/.rubocop.yml')
-rw-r--r--spec/.rubocop.yml59
1 files changed, 59 insertions, 0 deletions
diff --git a/spec/.rubocop.yml b/spec/.rubocop.yml
new file mode 100644
index 0000000..752f917
--- /dev/null
+++ b/spec/.rubocop.yml
@@ -0,0 +1,59 @@
+inherit_from: ../.rubocop.yml
+
+Layout/ClosingParenthesisIndentation:
+ Enabled: false
+
+Layout/EmptyLines:
+ Enabled: false
+
+Layout/EmptyLinesAroundBlockBody:
+ Enabled: false
+
+Layout/LeadingCommentSpace:
+ Enabled: false
+
+Layout/MultilineBlockLayout:
+ Enabled: false
+
+Layout/SpaceBeforeComma:
+ Enabled: false
+
+Layout/SpaceBeforeComment:
+ Enabled: false
+
+Layout/SpaceInsideBlockBraces:
+ Enabled: false
+
+Layout/SpaceInsideBrackets:
+ Enabled: false
+
+Layout/SpaceInsideParens:
+ Enabled: false
+
+Lint/AmbiguousRegexpLiteral:
+ Enabled: false
+
+Metrics/ModuleLength:
+ Enabled: false
+
+Metrics/BlockLength:
+ Enabled: false
+
+Style/BlockDelimiters:
+ IgnoredMethods: [ expect, let ]
+
+# I use it for purpose with Corefines, e.g. `using Corefines::String::unindent`.
+Style/ColonMethodCall:
+ Enabled: false
+
+Style/FrozenStringLiteralComment:
+ Enabled: false
+
+Style/NestedParenthesizedCalls:
+ Enabled: false
+
+Style/SymbolArray:
+ Enabled: false
+
+Style/WordArray:
+ Enabled: false