erlang-templates/rebar.config

22 lines
595 B
Plaintext
Raw Permalink Normal View History

ED-227/feat/service monitoring (#24) * ED-227/deps: Update images and deps * ED-227/tmp: Moving slowly * ED-227/fix: Fix lint job in Makefiles * ED-227/feat: Add observability to service template - Healthcheck (tested) - Statsd - Prometheus (tested) * ED-227/ref: Fix tab align in Makefiles * ED-227/deps: Update images * ED-227/ref: Fix formatting * ED-227/fix: Fix observability test templating * ED-227/ref: Fix warnings for service elvis config * ED-227/ref: Simplify Jenkins job * ED-227/ref: Fix typo * ED-227/fix: Fix tag embedding fun * ED-227/fix: Fix embed fun * ED-227/fix: Fix pipeline * ED-227/ref: Fix job naming * ED-227/fix: Include sh tools in pipeline * ED-227/fix: Fix pipeline docker creds * ED-227/fix: Fix observability tests * ED-227/fix: Fix Dockerfile * ED-227/deps: Fix service image name * ED-227/ref: Add todos to temp lint disable * ED-227/ref: Switch to project_plugins in rebar * ED-227/doc: Note templates and erlfmt conflict * ED-227/ref: Remove sys.config formatting * ED-227/feat: Test idea for build_utils jenkins lib * ED-227/fix: Add branch param * ED-227/fix: Fix branch for build_utils * ED-227/deps: Update build_utils * ED-227/deps: Update build_utils * ED-227/deps: Update build_utils * ED-227/fix: Remove var declaration * ED-227/deps: Update build_utils * ED-227/doc: Clarify erlfmt warnings in README.md * ED-227/feat: Add example woody handler * ED-227/fix: Switch to updated build_utils * ED-227/ref: Fix formatting * ED-227/feat: Better out-of-the-box formatting * ED-227/fix: Ignore thrift generated sources * ED-227/ref: Remove redundant arg def
2021-11-16 09:37:55 +00:00
{project_plugins, [
{erlfmt, "1.0.0"}
2021-05-19 17:10:43 +00:00
]}.
{erlfmt, [
{print_width, 120},
{files, [
"rebar.config",
"*.template",
ED-227/feat/service monitoring (#24) * ED-227/deps: Update images and deps * ED-227/tmp: Moving slowly * ED-227/fix: Fix lint job in Makefiles * ED-227/feat: Add observability to service template - Healthcheck (tested) - Statsd - Prometheus (tested) * ED-227/ref: Fix tab align in Makefiles * ED-227/deps: Update images * ED-227/ref: Fix formatting * ED-227/fix: Fix observability test templating * ED-227/ref: Fix warnings for service elvis config * ED-227/ref: Simplify Jenkins job * ED-227/ref: Fix typo * ED-227/fix: Fix tag embedding fun * ED-227/fix: Fix embed fun * ED-227/fix: Fix pipeline * ED-227/ref: Fix job naming * ED-227/fix: Include sh tools in pipeline * ED-227/fix: Fix pipeline docker creds * ED-227/fix: Fix observability tests * ED-227/fix: Fix Dockerfile * ED-227/deps: Fix service image name * ED-227/ref: Add todos to temp lint disable * ED-227/ref: Switch to project_plugins in rebar * ED-227/doc: Note templates and erlfmt conflict * ED-227/ref: Remove sys.config formatting * ED-227/feat: Test idea for build_utils jenkins lib * ED-227/fix: Add branch param * ED-227/fix: Fix branch for build_utils * ED-227/deps: Update build_utils * ED-227/deps: Update build_utils * ED-227/deps: Update build_utils * ED-227/fix: Remove var declaration * ED-227/deps: Update build_utils * ED-227/doc: Clarify erlfmt warnings in README.md * ED-227/feat: Add example woody handler * ED-227/fix: Switch to updated build_utils * ED-227/ref: Fix formatting * ED-227/feat: Better out-of-the-box formatting * ED-227/fix: Ignore thrift generated sources * ED-227/ref: Remove redundant arg def
2021-11-16 09:37:55 +00:00
%% Manual changing of sources is required for those to run successfully
%% (remove {{name}} and other placeholders). For details, see README.md
%%
"library-templates/{include,src,test}/*",
"service-templates/apps/app/{include,src,test}/*",
2022-02-02 09:15:10 +00:00
"service-templates/config/sys.config",
ED-227/feat/service monitoring (#24) * ED-227/deps: Update images and deps * ED-227/tmp: Moving slowly * ED-227/fix: Fix lint job in Makefiles * ED-227/feat: Add observability to service template - Healthcheck (tested) - Statsd - Prometheus (tested) * ED-227/ref: Fix tab align in Makefiles * ED-227/deps: Update images * ED-227/ref: Fix formatting * ED-227/fix: Fix observability test templating * ED-227/ref: Fix warnings for service elvis config * ED-227/ref: Simplify Jenkins job * ED-227/ref: Fix typo * ED-227/fix: Fix tag embedding fun * ED-227/fix: Fix embed fun * ED-227/fix: Fix pipeline * ED-227/ref: Fix job naming * ED-227/fix: Include sh tools in pipeline * ED-227/fix: Fix pipeline docker creds * ED-227/fix: Fix observability tests * ED-227/fix: Fix Dockerfile * ED-227/deps: Fix service image name * ED-227/ref: Add todos to temp lint disable * ED-227/ref: Switch to project_plugins in rebar * ED-227/doc: Note templates and erlfmt conflict * ED-227/ref: Remove sys.config formatting * ED-227/feat: Test idea for build_utils jenkins lib * ED-227/fix: Add branch param * ED-227/fix: Fix branch for build_utils * ED-227/deps: Update build_utils * ED-227/deps: Update build_utils * ED-227/deps: Update build_utils * ED-227/fix: Remove var declaration * ED-227/deps: Update build_utils * ED-227/doc: Clarify erlfmt warnings in README.md * ED-227/feat: Add example woody handler * ED-227/fix: Switch to updated build_utils * ED-227/ref: Fix formatting * ED-227/feat: Better out-of-the-box formatting * ED-227/fix: Ignore thrift generated sources * ED-227/ref: Remove redundant arg def
2021-11-16 09:37:55 +00:00
2021-05-19 17:10:43 +00:00
"service-templates/{rebar.config,elvis.config}",
"library-templates/{rebar.config,elvis.config}"
]}
]}.