0.1.0 • Published 3 years ago

@tallyho/eslint-config v0.1.0

Weekly downloads
-
License
GPL-3.0
Repository
github
Last release
3 years ago

eslint-config

A shared ESLint config based off Airbnb style guides. Covers JS and TS including React / JSX.

Getting started

Add the shared config with yarn

yarn add -D @tallyho/eslint-config

... and include a simple .eslintrc.js to get started.

module.exports = {
  root: true,
  extends: [
      "@tallyho/eslint-config",
  ],
  parserOptions: {
    project: "./tsconfig.json",
  },
}