From 13000634b5c6b1f1de1987dc95104ef2ac9d28eb Mon Sep 17 00:00:00 2001 From: erhant Date: Wed, 31 May 2023 21:46:47 +0300 Subject: [PATCH] smol fixes --- .eslintrc.json | 3 +-- .markdownlint.json | 4 ---- README.md | 41 ++++++++++++++++++++++++++--------------- src/proofTester.ts | 9 +++++---- src/types/wasmTester.ts | 2 +- src/wasmTester.ts | 14 +++++++------- 6 files changed, 40 insertions(+), 33 deletions(-) delete mode 100644 .markdownlint.json diff --git a/.eslintrc.json b/.eslintrc.json index d8f4ae0..86b438e 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -2,7 +2,6 @@ "extends": "./node_modules/gts/", "rules": { "node/no-unpublished-import": ["off"], - "node/no-unpublished-require": ["off"], - "@typescript-eslint/no-explicit-any": ["off"] + "node/no-unpublished-require": ["off"] } } diff --git a/.markdownlint.json b/.markdownlint.json deleted file mode 100644 index 5cbc992..0000000 --- a/.markdownlint.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "ol-prefix": false, - "line-length": false -} diff --git a/README.md b/README.md index 7b89485..506de0c 100644 --- a/README.md +++ b/README.md @@ -44,27 +44,27 @@ Using Circomkit is easy: 1. Install [Circom](https://docs.circom.io/getting-started/installation/). 2. Clone this repo (or use it as a template) and install packages (`yarn` or `npm install`). -3. Write your circuit templates under the `circuits` folder. Your circuit code itself should be templates only; Circomkit programmatically generates the `main` component -4. Write your tests under the `tests` folder. -5. Once you are ready, write the circuit config in [`circuit.config.ts`](./circuit.config.ts). +3. Write your circuit templates under the [circuits](./circuits/) folder. Your circuit code itself should be templates only; Circomkit programmatically generates the `main` component +4. Write your tests under the [tests](./tests/) folder. +5. Once you are ready, write the circuit configurations at [circuits.json](./circuits.json). 6. Use NPM scripts (`yarn