Archived
1
0
Fork 0

Refactoring

This commit is contained in:
Julien Dessaux 2021-10-05 22:39:45 +02:00
parent 9e29dd5678
commit a952eaabb7
3 changed files with 18 additions and 31 deletions

View file

@ -32,7 +32,7 @@ task fmt, "Run nimpretty on all git-managed .nim files in the current repo":
# ^^^^^-- That "cd" is required.
if fileIsGitManaged:
let
cmd = "nimpretty --maxLineLen=180 $1" % [file]
cmd = "nimpretty --maxLineLen=220 $1" % [file]
echo "Running $1 .." % [cmd]
exec(cmd)