Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove old formatter page link #6230

Merged
merged 1 commit into from
Nov 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
remove old formatter page link
  • Loading branch information
MaryaBelanger committed Nov 22, 2024
commit b50fba0b629437a12eb19442541d90458fdad33a
11 changes: 6 additions & 5 deletions src/content/effective-dart/style.md
Original file line number Diff line number Diff line change
Expand Up @@ -430,14 +430,15 @@ way the compiler does.
Formatting is tedious work and is particularly time-consuming during
refactoring. Fortunately, you don't have to worry about it. We provide a
sophisticated automated code formatter called [`dart format`][] that does it for
you. We have [some documentation][dart format docs] on the rules it applies, but the
official whitespace-handling rules for Dart are *whatever `dart format` produces*.
you. The official whitespace-handling rules for Dart are
*whatever `dart format` produces*. The [formatter FAQ][] can provide more insight
into the style choices it enforces.

The remaining formatting guidelines are for the few things `dart format` cannot fix
for you.
The remaining formatting guidelines are for the few things `dart format` cannot
fix for you.

[`dart format`]: /tools/dart-format
[dart format docs]: {{site.repo.dart.org}}/dart_style/wiki/Formatting-Rules
[formatter FAQ]: {{site.repo.dart.org}}/dart_style/wiki/FAQ

### CONSIDER changing your code to make it more formatter-friendly

Expand Down