in tslint, comments need to be preceded by a space.
// console.log(quz); this is more in line with the specification, I would like to ask how to set the corresponding formatting rules (with spaces before comments). 
 tslint has such a configuration to check. But formatting code cannot fix automatically 
"comment-format": [
  true,
  "check-space"
], after searching for a long time, I really couldn"t find it, so I was helpless to ask for help. ( "prettier.eslintIntegration"  has been set to  true ) 

