summaryrefslogtreecommitdiff
path: root/.rubocop.yml
diff options
context:
space:
mode:
Diffstat (limited to '.rubocop.yml')
-rw-r--r--.rubocop.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/.rubocop.yml b/.rubocop.yml
index ad1ca31..20567f4 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -14,6 +14,23 @@ LineLength:
Style/PreferredHashMethods:
EnforcedStyle: verbose
+Style/Not:
+ Enabled: false
+
+# comply with @ytti's exacting specifications
+Style/CommandLiteral:
+ EnforcedStyle: percent_x
+
+Style/FormatString:
+ EnforcedStyle: percent
+
+Style/FormatStringToken:
+ EnforcedStyle: unannotated
+
+Style/RescueModifier:
+ Enabled: false
+
+# Do not attempt to police vendored code, and exclude special cases
AllCops:
Exclude:
- 'vendor/**/*'