UNPKG

o1js-email-verify

Version:

Implemented using [o1js](https://github.com/o1-labs/o1js), this project is a reimplementation of [zk-email](https://github.com/zkemail/zk-email-verify), leveraging the Mina proving system [Kimchi](https://o1-labs.github.io/proof-systems/specs/kimchi.html#

24 lines (23 loc) 485 B
module.exports = { root: true, env: { browser: true, node: true, jest: true, }, extends: [ 'eslint:recommended', 'plugin:@typescript-eslint/eslint-recommended', 'plugin:@typescript-eslint/recommended', 'plugin:o1js/recommended', ], parser: '@typescript-eslint/parser', parserOptions: { ecmaVersion: 'latest', }, plugins: ['@typescript-eslint', 'o1js'], rules: { 'no-constant-condition': 'off', 'prefer-const': 'off', }, };