Skip to content

--fix-doc-comments not quite stable #768

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

Closed
davidmorgan opened this issue Jan 21, 2019 · 2 comments
Closed

--fix-doc-comments not quite stable #768

davidmorgan opened this issue Jan 21, 2019 · 2 comments
Labels

Comments

@davidmorgan
Copy link

Given this input

class Test {
  int x;
  /**
   * Hi.
   */
  int y;
}

dartfmt --fix-doc-comments test.dart produces this output

class Test {
  int x;
  /// Hi.
  int y;
}

but we're not done yet, as running this through dartfmt produces

class Test {
  int x;

  /// Hi.
  int y;
}
@munificent munificent added the bug label Jan 23, 2019
@munificent
Copy link
Member

Drat, that is a bug.

@munificent
Copy link
Member

Closing since we're getting rid of dart format --fix in favor of dart fix: #1153

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants