This is shared iden3 ESLint configuration.
- Install this package as devDependency
# with Yarn
$ yarn add -D @iden3/eslint-config
# with npm
$ npm i -D @iden3/eslint-config
# with pnpm
$ pnpm add -D @iden3/eslint-config
- Install peer dependencies of this package in your project as devDependencies
Therefore, you can make use of the tool install-peerdeps:
# with Yarn
$ yarn dlx install-peerdeps --dev @iden3/eslint-config
# with npm
$ npx install-peerdeps --dev @iden3/eslint-config
#with pnpm
$ pnpm dlx install-peerdeps --dev @iden3/eslint-config
Instead, you can do this manually by adding all entries part of the peerDependencies
property (see package.json
).
- Use ESLint config in your project
Create a .eslintrc.js
file in project root with the following content:
module.exports = {
extends: ["@iden3/eslint-config"],
};