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

Comments have trailing new lines removed #23

Closed
kiancross opened this issue Jan 10, 2021 · 0 comments
Closed

Comments have trailing new lines removed #23

kiancross opened this issue Jan 10, 2021 · 0 comments

Comments

@kiancross
Copy link

kiancross commented Jan 10, 2021

Input:

/*
 * Licence Header
*/

import { foo } from "foo"

console.log(foo.bar())

Expected Output

Unchanged from input

/*
 * Licence Header
*/

import { foo } from "foo"

console.log(foo.bar())

Actual Output:

/*
 * Licence Header
*/
import { foo } from "foo"

console.log(foo.bar())
@kiancross kiancross changed the title Comments have trailing space removed Comments have trailing new lines removed Jan 10, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants