Skip to content

Commit

Permalink
warn about everything we can
Browse files Browse the repository at this point in the history
  • Loading branch information
mmullis committed Sep 10, 2009
1 parent 25dd360 commit 3b7c6c9
Showing 1 changed file with 26 additions and 3 deletions.
29 changes: 26 additions & 3 deletions Emakefile
@@ -1,10 +1,33 @@
{ './src/*', [debug_info,
{ './src/*', [debug_info,warn_unused_vars,
warn_export_all,
warn_export_vars,
warn_shadow_vars,
warn_unused_import,
warn_unused_function,
warn_bif_clash,
warn_unused_record,
warn_deprecated_function,
warn_obsolete_guard,
warn_untyped_record,
warn_missing_spec,
warn_missing_spec_all,
{ i, "./include" },
{ outdir, "./ebin" }
]}.

{ './test/src/*', [debug_info,
{ './test/src/*', [debug_info,warn_unused_vars,
warn_export_all,
warn_export_vars,
warn_shadow_vars,
warn_unused_import,
warn_unused_function,
warn_bif_clash,
warn_unused_record,
warn_deprecated_function,
warn_obsolete_guard,
warn_untyped_record,
warn_missing_spec,
warn_missing_spec_all,
{ i, "./include" },
{ outdir, "./test/ebin" }
]}.

0 comments on commit 3b7c6c9

Please sign in to comment.