@elgato/prettier-config

0.2.1 • Public • Published

@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 180
singleQuote ❌ Prefer double
semi ✅ Prefer semicolons
tabWidth 4 for .md, 2 for .yml
useTabs ✅ Except .md and .yml
trailingComma None

Multiline arrays

Option Value
multilineArraysWrapThreshold 1

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:

Readme

Keywords

Package Sidebar

Install

npm i @elgato/prettier-config

Weekly Downloads

2

Version

0.2.1

License

MIT

Unpacked Size

8.78 kB

Total Files

5

Last publish

Collaborators

  • elgato-bot