@openmind-sw/prettier-config
v2.0.0
Published
Openmind-SW prettier config
Readme
Usage
Install via npm i --save-dev @openmind-sw/prettier-config
Add the following to the project's .prettierrc.js:
module.exports = {
...require('@openmind-sw/prettier-config'),
}And make sure to put it last so that your own config can overwrite other rules.
In case you want to extend the imported rules, you can do like so:
module.exports = {
...require('@openmind-sw/prettier-config'),
endOfLine: 'lf',
}