Skip to content

Latest commit

 

History

History
25 lines (22 loc) · 384 Bytes

readme.md

File metadata and controls

25 lines (22 loc) · 384 Bytes

Eslint default by hckr.news

These are my settings for ESLint and Prettier.

Here's an example usage:

{
  "extends": [
    "@hckrnews/eslint-config"
  ],
  "rules": {
    "no-console": 2,
    "prettier/prettier": [
      "error",
      {
        "trailingComma": "es5",
        "singleQuote": true,
        "printWidth": 120,
        "tabWidth": 8,
      }
    ]
  }
}