@tallyho/eslint-config
v0.1.0
Published
Tally, the community owned and operated Web3 wallet.
Downloads
22
Readme
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",
},
}