# Prettier
url:: [Prettier · Opinionated Code Formatter](https://prettier.io/)
Only looks at formatting, not anti-patterns, code smells, etc.
`.prettierrc` for custom rules
Can use in conjunction with [[ESLint]]
You can also put this in your EsLint config as a rule like so:
```
{
"extends": ["wesbos"],
"rules": {
... any eslint rules here
"prettier/prettier": [
"error",
{
"singleQuote": true,
"endOfLine": "auto",
"tabWidth": 4
},
],
}
}
```
[wesbos/eslint-config-wesbos: No-Sweat™ Eslint and Prettier Setup - with or without VS Code](https://github.com/wesbos/eslint-config-wesbos)