aboutsummaryrefslogtreecommitdiffstats
path: root/.rubocop.yml
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2017-02-14 12:11:39 -0300
committerGitHub <noreply@github.com>2017-02-14 12:11:39 -0300
commit208fe3690d840d0ee65b1395a891886e58fd3f4b (patch)
tree861da096e3d26abcb17c82b4d9a8c76d5ba9a1a3 /.rubocop.yml
parentd6af2090b16f7d061aa43913d610c6fada58b7e2 (diff)
parentc2bc569d2d538584cfc081e5775de17cdf2f054b (diff)
downloadrails-208fe3690d840d0ee65b1395a891886e58fd3f4b.tar.gz
rails-208fe3690d840d0ee65b1395a891886e58fd3f4b.tar.bz2
rails-208fe3690d840d0ee65b1395a891886e58fd3f4b.zip
Merge pull request #471 from rails/frozen-string-literal
Enable frozen_string_literal in all files in arel
Diffstat (limited to '.rubocop.yml')
-rw-r--r--.rubocop.yml6
1 files changed, 6 insertions, 0 deletions
diff --git a/.rubocop.yml b/.rubocop.yml
new file mode 100644
index 0000000000..2379a2afd0
--- /dev/null
+++ b/.rubocop.yml
@@ -0,0 +1,6 @@
+AllCops:
+ DisabledByDefault: true
+
+Style/FrozenStringLiteralComment:
+ Enabled: true
+ EnforcedStyle: always