Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@hckrnews/eslint-config

hckrnews487MIT3.1.1

ESLint and Prettier Config from hckr.news

javascript, ecmascript, eslint, lint, config, prettier

readme

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,
      }
    ]
  }
}