summaryrefslogtreecommitdiff
path: root/.rubocop.yml
diff options
context:
space:
mode:
Diffstat (limited to '.rubocop.yml')
-rw-r--r--.rubocop.yml26
1 files changed, 26 insertions, 0 deletions
diff --git a/.rubocop.yml b/.rubocop.yml
new file mode 100644
index 00000000000..4579fbcd2e4
--- /dev/null
+++ b/.rubocop.yml
@@ -0,0 +1,26 @@
+StringLiterals:
+ Enabled: false
+LineLength:
+ Enabled: false
+Documentation:
+ Enabled: false
+UnusedMethodArgument:
+ Enabled: false
+UnusedBlockArgument:
+ Enabled: false
+TrailingWhitespace:
+ Enabled: false
+MethodLength:
+ Enabled: false
+ClassLength:
+ Enabled: false
+AllCops:
+ Exclude:
+ - 'spec/**/*'
+ - 'features/**/*'
+ - 'vendor/**/*'
+ - 'db/**/*'
+ - 'tmp/**/*'
+ - 'bin/**/*'
+ - 'lib/backup/**/*'
+ - 'lib/tasks/**/*'