Open typinghare opened 2 years ago
感觉写JavaScript,TypeScript和HTML这种缩进层级比较多的语言,缩进2个空格就好了,然后各种格式细节看得也很让人揪心。推荐prettier这个东西 prettier - npm ,全局安装是
$ npm i -g prettier
然后在项目根目录下创建配置文件: .prettierrc.json,将以下内容复制到文件中(这是我自己的配置):
.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
感觉写JavaScript,TypeScript和HTML这种缩进层级比较多的语言,缩进2个空格就好了,然后各种格式细节看得也很让人揪心。推荐prettier这个东西 prettier - npm ,全局安装是
然后在项目根目录下创建配置文件:
.prettierrc.json
,将以下内容复制到文件中(这是我自己的配置):不知道你现在用的哪款IDE,如果是Jetbrains的,那么在
.prettierrc.json
文件里鼠标右键最下面有个“Apply Prettier Code Style Rules”,点了之后,以后写代码时按“option+command+L”就能调整代码格式了。Vscode肯定也是支持的,但我没用,我去VS market看了一眼:Prettier - Code formatter