12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- %% -*- erlang -*-
- {erl_opts, [
- warnings_as_errors,
- warn_export_all,
- warn_untyped_record,
- inline,
- {platform_define, "^R[01][0-9]", 'NO_MAP_TYPE'}
- ]}.
- {xref_checks, [
- fail_on_warning,
- undefined_function_calls
- ]}.
- {clean_files, [".eunit/*", "ebin/*.beam"]}.
- {cover_enabled, true}.
- {edoc_opts, [
- {dialyzer_specs, all},
- {report_missing_type, true},
- {report_type_mismatch, true},
- {pretty_print, erl_pp},
- {preprocess, true}
- ]}.
- {validate_app_modules, true}.
- {dialyzer,
- [
- {warnings, [error_handling, race_conditions, unmatched_returns]}
- ]}.
- {profiles,
- [
- {edown,
- [
- {edoc_opts,
- [
- {doclet, edown_doclet}
- ]},
- {deps,
- [
- {edown, {git, "git://github.com/uwiger/edown.git", {branch, "master"}}}
- ]}
- ]}
- ]}.
|