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

Package detail

prettier-config-get-off-my-lawn

manovotny3.1kMIT1.0.0

A highly opinionated, sharable config of Prettier rules to produce beautiful, readable code.

config, prettier, prettier-config

readme

prettier-config-get-off-my-lawn

A highly opinionated, sharable config of Prettier rules to produce beautiful, readable code.

prettier-config-get-off-my-lawn

As developers, we spend more time reading code than writing it. These rules aim to make reading code a priority.

That means some rules will be outside of the Prettier defaults and may feel unnecessary or "over the top" for many developers, which is fine. If you don't like it, you can get off my lawn! ... Or extend the rules and override them with the ones that bother you. Either way. 😊

Each and every single rule has been meticulously poured over and purposefully hand picked or excluded.

Install

$ yarn add prettier prettier-config-get-off-my-lawn --dev

Usage

Create a Prettier config in your package.json or .prettierrc.js file.

package.json

{
    "name": "my-awesome-project",
    "prettier": "prettier-config-get-off-my-lawn"
}

.prettierrc.js

Note: This is the only way to extend the configuration to overwrite some properties from the shared configuration.

module.exports = {
    ...require('prettier-config-get-off-my-lawn'),
    // enable additional rules, override rule options, etc.
};

License

MIT © Michael Novotny