|
|
[Plugins](https://prettier.io/docs/en/editors.html)
|
|
|
|
|
|
Salve o JSON a seguir com o nome de ```.prettierrc``` na raiz do projeto para aplicá-lo.
|
|
|
|
|
|
```json
|
|
|
{
|
|
|
"arrowParens": "avoid",
|
|
|
"bracketSpacing": true,
|
|
|
"htmlWhitespaceSensitivity": "css",
|
|
|
"insertPragma": false,
|
|
|
"jsxBracketSameLine": false,
|
|
|
"jsxSingleQuote": false,
|
|
|
"parser": "babylon",
|
|
|
"printWidth": 120,
|
|
|
"proseWrap": "preserve",
|
|
|
"requirePragma": false,
|
|
|
"semi": true,
|
|
|
"singleQuote": true,
|
|
|
"tabWidth": 4,
|
|
|
"trailingComma": "none",
|
|
|
"useTabs": true
|
|
|
}
|
|
|
``` |
|
|
\ No newline at end of file |