Evan Harmon - Memex

Prettier

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
      },
    ],
  }
}
Prettier
Interactive graph
On this page
Prettier