aiken/crates
KtorZ 431b0cfcf2 Preserve newlines after blocks of comments.
This is an example of output from the formatter now:

  ```
  //// Some module documentation

  // foo
  const a: Int = 42

  // Some comment block
  // For which newlines are respected.
  // Foo

  // Another one

  /// add_one documentation
  pub fn add_one(n: Int) -> Int {
    // n + 1
    n + 1
  }
  ```

  before this commit, comments would all be collapsed into one group
  above the function as:

  ```
  // Some comment block
  // For which newlines are respected.
  // Foo
  // Another one
  /// add_one documentation
  pub fn add_one(n: Int) -> Int {
  ```
2022-12-13 18:52:23 -05:00
..
cli Add --match-tests to 'check' cmd 2022-12-13 10:34:34 -05:00
flat Release 0.0.21 2022-10-23 17:58:21 -04:00
lang Preserve newlines after blocks of comments. 2022-12-13 18:52:23 -05:00
lsp Release 0.0.26 2022-11-23 00:31:24 -05:00
project refactor: change match to if matches! 2022-12-13 10:34:34 -05:00
uplc feat: impl Sub for ExBudget 2022-12-08 19:24:20 -05:00