Remove the explicit line length, this is not needed anymore

This commit is contained in:
Roland Geider
2025-07-02 19:29:24 +02:00
parent af9cc04e74
commit bf34447958
2 changed files with 2 additions and 2 deletions

View File

@@ -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.

View File

@@ -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