aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/pronto/eslint/version.rb
diff options
context:
space:
mode:
authorMindaugas Mozūras <mindaugas.mozuras@gmail.com>2016-02-28 17:53:42 +0200
committerMindaugas Mozūras <mindaugas.mozuras@gmail.com>2016-02-28 17:53:42 +0200
commitdb8f1f434e7ffc9f57eef0758a19e9ad63dab827 (patch)
treef83e53d4a807053eb5f853950a70c7801e04edf0 /lib/pronto/eslint/version.rb
parent9be00a3292ddbbf280ac6d92b5b8add7f8ae9508 (diff)
downloadpronto-hlint-db8f1f434e7ffc9f57eef0758a19e9ad63dab827.tar.gz
pronto-hlint-db8f1f434e7ffc9f57eef0758a19e9ad63dab827.tar.zst
pronto-hlint-db8f1f434e7ffc9f57eef0758a19e9ad63dab827.zip
Fix Rubocop warning about freezing strings
Diffstat (limited to 'lib/pronto/eslint/version.rb')
-rw-r--r--lib/pronto/eslint/version.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pronto/eslint/version.rb b/lib/pronto/eslint/version.rb
index d59d88a..8c1e300 100644
--- a/lib/pronto/eslint/version.rb
+++ b/lib/pronto/eslint/version.rb
@@ -1,5 +1,5 @@
1module Pronto 1module Pronto
2 module ESLintVersion 2 module ESLintVersion
3 VERSION = '0.5.0' 3 VERSION = '0.5.0'.freeze
4 end 4 end
5end 5end