prettier-config-udemy-website
v1.0.8
Published
Udemy's Prettier configuration
Downloads
3,801
Keywords
Readme
Udemy Prettier Config
This configuration provides a basis for any ES2015 JavaScript code developed at Udemy.
It is mainly used by udemy/website-django/static
and udemy/website-django/e2e.
Installation
Install Prettier locally.
$ yarn add prettier --devInstall the Udemy Prettier Config locally.
$ yarn add prettier-config-udemy-website --devConfiguration
Add a require section to your .prettierrc.js and specify prettier-config-udemy-website a required module.
You can additionally adjust rules by overriding them. E.g.:
// A .prettierrc.js
module.exports = {
...require("prettier-config-udemy-website"),
// Any overwrites.
printWidth: 140,
tabWidth: 4
};Contributing
See Contributing.
