Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@vkontakte/prettier-config

VKCOM5.4kMIT0.2.1

Prettier config from VK

VK, Prettier, Prettier config

readme

VK Prettier Config

This is a shared config file for Prettier from VK. This package is used to avoid duplicating the config file between repositories.

yarn add -D prettier @vkontakte/prettier-config

package.json:

{
  "prettier": "@vkontakte/prettier-config"
}

createConfig

createConfig function takes only one optional argument printWidth, if your project needs to change the width of the lines. 100 is a default value.

prettier.config.mjs:

import { createConfig } from './index.js';

export default createConfig(80);