- Install
@elgato/prettier-config
.
npm install @elgato/prettier-config --save-dev
- Edit your
package.json
to reference the configuration.
"prettier": "@elgato/prettier-config"
Option | Value |
---|---|
endOfLine |
lf |
printWidth |
120 |
singleQuote |
❌ Prefer double |
semi |
✅ Prefer semicolons |
tabWidth |
4 (2 for .yaml , .yml ) |
useTabs |
✅ Except .json , .jsonc , .md , .yaml , .yml |
trailingComma |
All, except .jsonc |
Option | Value |
---|---|
multilineArraysWrapThreshold |
-1 (manual) |
Option | Value |
---|---|
importOrder |
Third-party modules first. |
importOrderSeparation |
✅ |
importOrderSortSpecifiers |
✅ |
importOrderCaseInsensitive |
✅ |
importOrderParserPlugins |
TypeScript, decoratorAutoAccessors, explicitResourceManagement |
Overriding configuration can be achieved by removing the prettier
entry from package.json
, in favour of a .prettierrc.js
file. For example, to prefer spaces over tabs:
module.exports = {
...require("@elgato/prettier-config"),
tabWidth: 2,
useTabs: false,
};
This project wishes to express thanks to those who work on Prettier, and Prettier plugins, with particular thanks to:
- prettier and prettier-vscode, from the prettier team.
- prettier-plugin-multiline-arrays, from electrovir.
- prettier-plugin-sort-imports from the Trivago team.