UNPKG

noir-gates-diff

Version:

Github Action reporting gates diff from Nargo info reports

20 lines (19 loc) 543 B
module.exports = { root: true, parser: "@typescript-eslint/parser", plugins: ["@typescript-eslint", "prettier"], extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended"], rules: { "comma-spacing": ["error", { before: false, after: true }], "no-unused-vars": "off", "@typescript-eslint/no-unused-vars": [ "warn", // or "error" { argsIgnorePattern: "^_", varsIgnorePattern: "^_", caughtErrorsIgnorePattern: "^_", }, ], "prettier/prettier": "error", }, };