mirror of
https://github.com/inventree/inventree-app.git
synced 2025-06-15 19:55:27 +00:00
Tweak command
This commit is contained in:
7
tasks.py
7
tasks.py
@ -39,6 +39,9 @@ def android(c):
|
||||
c.run("flutter build appbundle --release --no-tree-shake-icons")
|
||||
|
||||
@task
|
||||
def format(c):
|
||||
def format(c, analyze=False, dry_run=False):
|
||||
"""Format Dart code."""
|
||||
c.run("dart format --output=none")
|
||||
c.run(f"dart format .{" --output=none" if dry_run else ''}")
|
||||
|
||||
if analyze:
|
||||
c.run("flutter analyze")
|
||||
|
Reference in New Issue
Block a user