-
Notifications
You must be signed in to change notification settings - Fork 4
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
Notes are not sorted #2
Comments
@Alex-Rudoy help |
hi @crazyair , I've added comment support, now they stick to import below them, can you test it out? |
before import a from 'a'
const test=`
import a from "a";
` after import a from "a";
import a from "a";
const test = `
`; |
before import a from "a";
// demo1
const demo1 = 1;
// demo2
const demo2 = 2; after import a from "a";
// demo1
// demo2
const demo1 = 1;
const demo2 = 2; |
well, I wrote this extension for myself and team to use on our current React project. We all use prettier aswell. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
bad
good
The text was updated successfully, but these errors were encountered: