Skip to content

Commit 480895f

Browse files
committed
Fix
1 parent b6f14f3 commit 480895f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/cs/src/cs_sup.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ dbinit() ->
5656
DbOpts = maps:get(DbRef, Databases),
5757
MigrationOpts = application_get_env(?APP, migration_opts, ?DEFAULT_MIGRATION_OPTS),
5858
logger:info("migrations for cs start"),
59-
{ok, _} = epg_migrator:perform("cs", DbOpts, MigrationOpts, filename:join([MigrationsDir, "cs"])),
59+
{ok, _} = epg_migrator:perform("cs", DbOpts, MigrationOpts, MigrationsDir),
6060
logger:info("migrations for cs success"),
6161
ok
6262
end.

elvis.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
filter => "*.erl",
88
ruleset => erl_files,
99
rules => [
10-
{elvis_text_style, line_length, #{limit => 100}},
10+
{elvis_text_style, line_length, #{limit => 120}},
1111
{elvis_style, nesting_level, #{level => 4}},
1212
{elvis_style, function_naming_convention, #{regex => "^([a-z][a-z0-9]*_?)*$"}},
1313
{elvis_style, no_if_expression, disable},

0 commit comments

Comments
 (0)