This is the home of the shared Emerson E&P Software Prettier config. For consistency this config should be used by all projects in E&P Software.
This config should normally be used in conjunction with @emerson-eps/eslint-config. Refer to that repository for instructions on using the two together.
npm install --save-dev @emerson-eps/prettier-config
The simplest way to include the prettier config is to reference the shared prettier config in the package.json
file:
{
"name": "my-library",
"version": "1.0.0",
"prettier": "@emerson-eps/prettier-config"
}
Alternatively add a .prettierrc.js
to the project, which is also a requirement if you need to override some of the options, and import the module:
module.exports = {
...require("@emerson-eps/prettier-config"),
// Additional rules...
};
Try not to override the shared config unless you really need to. If you must override it please consider proposing the override as a change to this repository first to avoid divergence of code styles in different projects.
For further Prettier configuration help including precedence of configuration options consult the Prettier documentation.
If not already installed, install the Prettier extension.