美文网首页
vscode 配置eslint+prettier

vscode 配置eslint+prettier

作者: 朱传武 | 来源:发表于2021-02-25 18:13 被阅读0次

    安装vscode-prettier

    image.png

    配置vscode

    image.png
    image.png

    如果 "prettier.requireConfig": 设置为true的时候,必须要在项目根目录下添加配置文件,例如:.prettierrc.js

    module.exports = {
      // semi: false, // 行位是否使用分号,默认为true
      // trailingComma: 'all', // 是否使用尾逗号,有三个可选值"<none|es5|all>"
      singleQuote: true, // 字符串是否使用单引号,默认为false,使用双引号
      // printWidth: 160, // 一行的字符数,如果超过会进行换行,默认为80
      // tabWidth: 4, // 一个tab代表几个空格数
      // useTabs: false, // 启用tab缩进
      // bracketSpacing: false, // 对象大括号直接是否有空格,默认为true,效果:{ foo: bar }
      // endOfLine: 'auto',
    }
    

    相关文章

      网友评论

          本文标题:vscode 配置eslint+prettier

          本文链接:https://www.haomeiwen.com/subject/jhvufltx.html