30 lines
640 B
Erlang
30 lines
640 B
Erlang
%% -*- mode: erlang; -*-
|
|
|
|
{erl_opts, [
|
|
warn_unused_vars,
|
|
warn_shadow_vars,
|
|
warn_unused_import,
|
|
warn_obsolete_guard,
|
|
warnings_as_errors,
|
|
debug_info
|
|
]}.
|
|
{deps, [
|
|
{emqx_connector, {path, "../../apps/emqx_connector"}},
|
|
{emqx_resource, {path, "../../apps/emqx_resource"}},
|
|
{emqx_bridge, {path, "../../apps/emqx_bridge"}},
|
|
{emqx_bridge_http, {path, "../emqx_bridge_http"}}
|
|
]}.
|
|
|
|
{xref_checks, [
|
|
undefined_function_calls,
|
|
undefined_functions,
|
|
locals_not_used,
|
|
deprecated_function_calls,
|
|
warnings_as_errors,
|
|
deprecated_functions
|
|
]}.
|
|
|
|
{shell, [
|
|
{apps, [emqx_bridge_gcp_pubsub]}
|
|
]}.
|