vscode中prettier设置

```

"vetur.format.options.tabSize": 4,

"vetur.format.scriptInitialIndent":true,

"vetur.format.defaultFormatterOptions": {

"prettyhtml": {

"printWidth": 140

    },

"prettier": {

"singleQuote":true,

"printWidth": 400,

"proseWrap":"never"

    }

  },

"prettier.semi":true,

"prettier.printWidth": 400,

"prettier.proseWrap":"never",

"prettier.singleQuote":true,

"vetur.validation.template":false,

"editor.formatOnSave":true,

"cssrem.rootFontSize": 75,

"eslint.validate": [

"javascript",

    {

"language":"vue",

"autoFix":true

    },

"html",

"vue"

  ],

"eslint.autoFixOnSave":true

```

你可能感兴趣的:(vscode中prettier设置)