IT/JavaScript

[VSCode] Prettier Config

2T1 2023. 1. 12. 18:41
 

Prettier · Opinionated Code Formatter

Opinionated Code Formatter

prettier.io

 

// prettierrc.js

module.exports = {
  printWidth: 200,
  tabWidth: 2,
  useTabs: false,
  semi: true,
  singleQuote: true,
  quoteProps: "as-needed",
  jsxSingleQuote: false,
  trailingComma: "es5",
  bracketSpacing: true,
  bracketSameLine: false,
  arrowParens: "always",
  singleAttributePerLine: false,
  endOfLine: "auto",
  overrides: [
    {
      files: "*.js",
      options: {
        printWidth: 10000
      }
    }
  ]
}

 

 

// prettierrc.json

{
  "printWidth": 200,
  "tabWidth": 2,
  "useTabs": false,
  "semi": true,
  "singleQuote": true,
  "quoteProps": "as-needed",
  "jsxSingleQuote": false,
  "trailingComma": "es5",/
  "bracketSpacing": true,
  "bracketSameLine": false,
  "arrowParens": "always",
  "singleAttributePerLine": false,
  "endOfLine": "auto",/
  "overrides": [
    {
      "files": "*.js",
      "options": {
        "printWidth": 10000
      }
    }
  ]
}