summaryrefslogtreecommitdiff
path: root/.rubocop.yml
diff options
context:
space:
mode:
authorWild Kat <wk@futureinquestion.net>2018-04-11 18:03:04 +0200
committerWild Kat <wk@futureinquestion.net>2018-04-11 18:39:17 +0200
commit9850a6b6107685c6cfc95f0411a5e61e0955bf85 (patch)
tree364c7bc80d8ac7f423de2efdd06ff460b8334929 /.rubocop.yml
parent0f8975cf5e77e1757bb77cf694d4a0876729a0af (diff)
introduce rubocop and bump testing ecosystem
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'