We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73c8c68 commit f45df13Copy full SHA for f45df13
ruby/rubocop.rb
@@ -0,0 +1,28 @@
1
+# Commands
2
+
3
+# run
4
+bundle exec rubocop
5
6
+# run with automatically fixing issues
7
+bundle exec rubocop --safe-auto-correct
8
9
+# same but for cowboys!
10
+bundle exec rubocop -a
11
12
+# generate a 'todo' config file to exclude all current isssues
13
+rubocop --auto-gen-config
14
15
16
+# Config options
17
18
+# Some rules are configurable
19
+Layout/LineLength:
20
+ Max: 90
21
22
+# Some rules don't make sense
23
+Bundler/OrderedGems:
24
+ Enabled: false
25
26
+# Disable everything and to then start slowly whitelisting rules
27
+AllCops:
28
+ DisabledByDefault: true
0 commit comments