1.0.0 • Published 3 years ago

@cbschuld/prettier-config v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

@cbschuld/prettier-config

My personal prettier config - format influenced by standardjs.com

Installation

npm install --save-dev @cbschuld/prettier-config

Next, make sure you edit your package.json file by adding the reference for prettier:

{
  // ...
  "prettier": "@cbschuld/prettier-config"
}

Notes on VSCODE

To really enable VS CODE to work well with this configuration make sure you install both Prettier and ESLint.

Next, create a settings.json file in the .vscode root path of your project as follows. (Please note: this example contains additional settings I personally enjoy - you can ignore those)

{
  "editor.formatOnSave": true, // Tell VSCode to format files on save
  "editor.defaultFormatter": "esbenp.prettier-vscode", // Tell VSCode to use Prettier as default file formatter
  "editor.formatOnPaste": false,
  "[typescript]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  "[typescriptreact]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  "files.exclude": {
    "node_modules/": true,
    "*/node_modules/": true,
    "**/node_modules/": true,
    "*/.serverless/": true,
    "**/.serverless/": true,
    "*/.webpack/": true,
    "**/.webpack/": true
  },
  "prettier.printWidth": 100,
  "editor.codeActionsOnSave": {
    "source.fixAll.eslint": true
  },
  "eslint.validate": ["react", "html", "javascript", "typescript"]
}