aboutsummaryrefslogtreecommitdiffstats
path: root/rebar.config
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2011-04-12 16:23:52 +0200
committerLoïc Hoguin <[email protected]>2011-04-12 16:23:52 +0200
commitaab91c044b5eeabc38556c2810e9861c297fbcb1 (patch)
treeaff32f4fc8981723cad6d4977615132b1807c9b3 /rebar.config
parent73b120b68ec454963d02c06153d9e9f2b39840f9 (diff)
downloadcowboy-aab91c044b5eeabc38556c2810e9861c297fbcb1.tar.gz
cowboy-aab91c044b5eeabc38556c2810e9861c297fbcb1.tar.bz2
cowboy-aab91c044b5eeabc38556c2810e9861c297fbcb1.zip
Don't enable binary optimization warnings by default.
It's problematic: both doing it right and doing it wrong trigger a warning and we treat warnings as errors.
Diffstat (limited to 'rebar.config')
-rw-r--r--rebar.config6
1 files changed, 5 insertions, 1 deletions
diff --git a/rebar.config b/rebar.config
index 665255c..f75bfd4 100644
--- a/rebar.config
+++ b/rebar.config
@@ -5,4 +5,8 @@
unmatched_returns
%% underspecs
]}]}.
-{erl_opts, [bin_opt_info, warnings_as_errors, warn_export_all]}.
+{erl_opts, [
+%% bin_opt_info,
+ warnings_as_errors,
+ warn_export_all
+]}.