prettier-config-get-off-my-lawn

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

Usage no npm install needed!

<script type="module">
  import prettierConfigGetOffMyLawn from 'https://cdn.skypack.dev/prettier-config-get-off-my-lawn';
</script>

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

Related

License

MIT © Michael Novotny