Skip to content

Instantly share code, notes, and snippets.

@gbutt
Created February 19, 2020 15:00
Show Gist options
  • Save gbutt/b8c9aad081503c4b007f1be1ed6509f7 to your computer and use it in GitHub Desktop.
Save gbutt/b8c9aad081503c4b007f1be1ed6509f7 to your computer and use it in GitHub Desktop.
prettier for salesforce
// prettier.config.js or .prettierrc.js
module.exports = {
printWidth: 100,
// tabWidth: 4, // inherits from .editorconfig
trailingComma: 'es5',
singleQuote: true,
overrides: [
{
files: '*.cmp',
options: {
printWidth: 160,
tabWidth: 2,
},
},
{
files: 'src/lwc/**/*.html',
options: {
parser: 'lwc',
printWidth: 80,
tabWidth: 2,
},
},
{
files: 'src/**/lwc/**/*.html',
options: {
parser: 'lwc',
printWidth: 80,
tabWidth: 2,
},
},
],
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment