From e311da4c12d0507bb499e0be81111331e420506e Mon Sep 17 00:00:00 2001 From: Roland Geider Date: Tue, 22 Jun 2021 22:37:33 +0200 Subject: [PATCH] Use line length of 100 for formatting --- .github/workflows/linter.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 5aa5d8f8..b5a6a360 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -23,7 +23,7 @@ jobs: run: flutter pub get - name: Check for formatting issues (run "flutter format . ") - run: flutter format . + run: flutter format --line-length=100 . - name: Push a commit with the changed files continue-on-error: true