about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFire Demon <firedemon@creature.cafe>2020-08-04 13:44:34 -0500
committerFire Demon <firedemon@creature.cafe>2020-08-30 05:45:17 -0500
commit0f7f8a0b0df16e48de5ef74dc6e1b8025aa76aa7 (patch)
tree901b6aa574546abb53891a0c9653aa8cb6f9fc4a
parentaf7003412cf6ed581fd190f3ae7ee979a078d483 (diff)
[Linting] Add missing validators to Rubocop config
-rw-r--r--.rubocop.yml43
1 files changed, 43 insertions, 0 deletions
diff --git a/.rubocop.yml b/.rubocop.yml
index 25e0fa940..e8f1bc3f4 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -140,3 +140,46 @@ Style/TrailingCommaInArrayLiteral:
 
 Style/TrailingCommaInHashLiteral:
   EnforcedStyleForMultiline: 'comma'
+
+Layout/EmptyLinesAroundAttributeAccessor:
+  Enabled: true
+
+Layout/SpaceAroundMethodCallOperator:
+  Enabled: true
+
+Lint/DeprecatedOpenSSLConstant:
+  Enabled: true
+
+Lint/MixedRegexpCaptureTypes:
+  Enabled: true
+
+Lint/RaiseException:
+  Enabled: true
+
+Lint/StructNewOverride:
+  Enabled: true
+
+Style/ExponentialNotation:
+  Enabled: true
+
+Style/HashEachMethods:
+  Enabled: true
+
+Style/HashTransformKeys:
+  Enabled: true
+
+Style/HashTransformValues:
+  Enabled: true
+
+Style/RedundantFetchBlock:
+  Enabled: true
+
+Style/RedundantRegexpCharacterClass:
+  Enabled: true
+
+Style/RedundantRegexpEscape:
+  Enabled: true
+
+Style/SlicingWithRange:
+  Enabled: true
+