punyung / nodejs_exercise

练习用nodejs写API和数据库交互
MIT License
1 stars 0 forks source link

关于代码格式 #1

Open typinghare opened 2 years ago

typinghare commented 2 years ago

感觉写JavaScript,TypeScript和HTML这种缩进层级比较多的语言,缩进2个空格就好了,然后各种格式细节看得也很让人揪心。推荐prettier这个东西 prettier - npm ,全局安装是

$ npm i -g prettier

然后在项目根目录下创建配置文件: .prettierrc.json,将以下内容复制到文件中(这是我自己的配置):

{
  "@see": "https://github.com/obartra/prettierrc",
  "tabWidth": 2,
  "useTabs": false,
  "noSemi": true,
  "singleQuote": true,
  "trailingComma": "none",
  "printWidth": 100,
  "bracketSpacing": true,
  "arrowParens": "always"
}

不知道你现在用的哪款IDE,如果是Jetbrains的,那么在 .prettierrc.json 文件里鼠标右键最下面有个“Apply Prettier Code Style Rules”,点了之后,以后写代码时按“option+command+L”就能调整代码格式了。Vscode肯定也是支持的,但我没用,我去VS market看了一眼:Prettier - Code formatter

punyung commented 2 years ago
  1. IDE 用的webstorm
  2. 已经配置成功啦,感谢!