From bf344479589963bb9e6b89bded8ff3827314347f Mon Sep 17 00:00:00 2001 From: Roland Geider Date: Wed, 2 Jul 2025 19:29:24 +0200 Subject: [PATCH] Remove the explicit line length, this is not needed anymore --- .github/pull_request_template.md | 2 +- .github/workflows/linter.yml.bak | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 073681dc..5d11748c 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -12,6 +12,6 @@ If applicable, please link to any related issues (`Closes #123`, - [ ] Tests for the changes have been added (for bug fixes / features) - [ ] Set a 100 character limit in your editor/IDE to avoid white space diffs in the PR - (run `dart format --line-length=100 .`) + (run `dart format .`) - [ ] Updated/added relevant documentation (doc comments with `///`). - [ ] Added relevant reviewers. diff --git a/.github/workflows/linter.yml.bak b/.github/workflows/linter.yml.bak index 6339805d..e3665a58 100644 --- a/.github/workflows/linter.yml.bak +++ b/.github/workflows/linter.yml.bak @@ -26,7 +26,7 @@ jobs: run: flutter pub get - name: Check for formatting issues (run "dart format . ") - run: dart format --line-length=100 . + run: dart format . - name: Push a commit with the changed files continue-on-error: true