Skip to content

Prettier configuration used by Elgato projects.

License

Notifications You must be signed in to change notification settings

elgatosf/prettier-config

Repository files navigation

@elgato/prettier-config

Prettier configuration used by Elgato projects.

@elgato/prettier-config npm package Join the Marketplace Makers Discord Elgato homepage

Usage

  1. Install @elgato/prettier-config.
npm install @elgato/prettier-config --save-dev
  1. Edit your package.json to reference the configuration.
"prettier": "@elgato/prettier-config"

Configuration

Prettier

Option Value
endOfLine lf
printWidth 120
singleQuote ❌ Prefer double
semi ✅ Prefer semicolons
tabWidth 4 for .json and .md, 2 for .yml
useTabs ✅ Except .json, .md and .yml
trailingComma All

Multiline arrays

Option Value
multilineArraysWrapThreshold -1 (manual)

Sort imports

Option Value
importOrder Third-party modules first.
importOrderSeparation
importOrderSortSpecifiers
importOrderCaseInsensitive
importOrderParserPlugins TypeScript

Overrides

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,
};

Recognitions

This project wishes to express thanks to those who work on Prettier, and Prettier plugins, with particular thanks to:

About

Prettier configuration used by Elgato projects.

Resources

License

Stars

Watchers

Forks

Packages