We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
before:
interface Props { // some comment a: number; }
after:
interface Props { /** some comment */ a: number; }
interface Props { // comment line 1 // comment line 2 a: number; }
interface Props { /** * comment line 1 * comment line 2 */ a: number; }
// add two number function add(a, b) { }
/** * add two number */ function add(a, b) { }
// add two number const add = (a, b) => { }
/** * add two number */ const add = (a, b) => { }
The text was updated successfully, but these errors were encountered:
nicoespeon
No branches or pull requests
scene 1
before:
after:
scene 2
after:
scene 3
after:
scene 4
after:
The text was updated successfully, but these errors were encountered: