summaryrefslogtreecommitdiff
path: root/.rubocop.yml
diff options
context:
space:
mode:
authorWild Kat <wk@futureinquestion.net>2018-04-11 20:02:40 +0200
committerWild Kat <wk@futureinquestion.net>2018-04-11 20:02:40 +0200
commitfc32fd8d3bfc416996bfc9a33be0e28e359ea0d5 (patch)
treee46a719c1a7e0a5cf852b394d3c2a1df4720fd71 /.rubocop.yml
parenta4bd3e5ca5ab747fdbf2bd876d7be7a947e74f46 (diff)
parent91deea2ef8a7ae5f9ed6b523b720f9cf2c3f33b9 (diff)
Merge remote-tracking branch 'origin/master' into models-backflip
Diffstat (limited to '.rubocop.yml')
-rw-r--r--.rubocop.yml20
1 files changed, 20 insertions, 0 deletions
diff --git a/.rubocop.yml b/.rubocop.yml
new file mode 100644
index 0000000..ad1ca31
--- /dev/null
+++ b/.rubocop.yml
@@ -0,0 +1,20 @@
+inherit_from: .rubocop_todo.yml
+
+AllCops:
+ Include:
+ - Rakefile
+
+StringLiterals:
+ Enabled: false
+
+LineLength:
+ Enabled: false
+
+# Stick to verbose until https://bugs.ruby-lang.org/issues/10177 is closed.
+Style/PreferredHashMethods:
+ EnforcedStyle: verbose
+
+AllCops:
+ Exclude:
+ - 'vendor/**/*'
+ - 'lib/oxidized/input/tftp.rb'