当前位置:   article > 正文

配置prettier_prettier配置

prettier配置

1.添加Prettier 插件

在这里插入图片描述

2.在vscode设置中找到 Format On Save ,打勾。

在这里插入图片描述

3.在文件目录中创建一个.prettierrc文件

  4.将这些规则规则写入.prettierrc中

  1. {
  2. // tab缩进大小,默认为2
  3. "tabWidth": 4,
  4. // 使用tab缩进,默认false
  5. "useTabs": false,
  6. // 使用分号, 默认true
  7. "semi": false,
  8. // 使用单引号, 默认false(在jsx中配置无效, 默认都是双引号)
  9. "singleQuote": false,
  10. // 行尾逗号,默认none,可选 none|es5|all
  11. // es5 包括es5中的数组、对象
  12. // all 包括函数对象等所有可选
  13. "TrailingCooma": "all",
  14. // 对象中的空格 默认true
  15. // true: { foo: bar }
  16. // false: {foo: bar}
  17. "bracketSpacing": true,
  18. // JSX标签闭合位置 默认false
  19. // false: <div
  20. // className=""
  21. // style={{}}
  22. // >
  23. // true: <div
  24. // className=""
  25. // style={{}} >
  26. "jsxBracketSameLine": false,
  27. // 箭头函数参数括号 默认avoid 可选 avoid| always
  28. // avoid 能省略括号的时候就省略 例如x => x
  29. // always 总是有括号
  30. "arrowParens": "avoid"
  31. }

5..回到vscode在settings.json中 配置prettier插件

  1. // prettier配置
  2. "prettier.configPath": "C:\\Users\\Luck\\.prettierrc", // prettierrc文件目录
  3. "eslint.alwaysShowStatus": true, // 总是显示eslint状态
  4. "prettier.printWidth": 120, // 超过最大值换行
  5. "prettier.tabWidth": 2, // 缩进字节数
  6. "prettier.useTabs": false, // 缩进不使用tab,使用空格
  7. "prettier.semi": true, // 句尾添加分号
  8. "prettier.singleQuote": true, // 使用单引号代替双引号
  9. "prettier.proseWrap": "preserve", // 默认值。因为使用了一些折行敏感型的渲染器(如GitHub comment)而按照markdown文本样式进行折行
  10. "prettier.arrowParens": "avoid", // (x) => {} 箭头函数参数只有一个时是否要有小括号。avoid:省略括号
  11. "prettier.bracketSpacing": true, // 在对象,数组括号与文字之间加空格 "{ foo: bar }"
  12. "prettier.endOfLine": "auto", // 结尾是 \n \r \n\r auto
  13. "prettier.eslintIntegration": false, //不让prettier使用eslint的代码格式进行校验
  14. "prettier.htmlWhitespaceSensitivity": "ignore",
  15. "prettier.ignorePath": ".prettierignore", // 不使用prettier格式化的文件填写在项目的.prettierignore文件中
  16. "prettier.BracketSameLine": false, // 在jsx中把'>' 是否单独放一行
  17. "prettier.jsxSingleQuote": false, // 在jsx中使用单引号代替双引号
  18. // "prettier.parser": "babylon", // 格式化的解析器,默认是babylon
  19. "prettier.requireConfig": false, // Require a 'prettierconfig' to format prettier
  20. "prettier.stylelintIntegration": false, //不让prettier使用stylelint的代码格式进行校验
  21. "prettier.trailingComma": "none", // 属性值es5表示在对象或数组最后一个元素后面是否加逗号(在ES5中加尾逗号)
  22. "prettier.tslintIntegration": false, // 不让prettier使用tslint的代码格式进行校验

 5.重启vscode

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/寸_铁/article/detail/818018
推荐阅读
相关标签
  

闽ICP备14008679号