mirror of
https://github.com/0xbow-io/privacy-pools-core.git
synced 2026-01-09 17:37:58 -05:00
There are a lot of TODOs related to code quality, mostly happy path assumptions, input sanitization, error handling and tests. Feature wise it's missing the contract interaction (should be straight forward once it's implemented in the SDK) and the sqlite database for request tracking.
14 lines
392 B
JavaScript
14 lines
392 B
JavaScript
import globals from "globals";
|
|
import pluginJs from "@eslint/js";
|
|
import tseslint from "typescript-eslint";
|
|
|
|
|
|
/** @type {import('eslint').Linter.Config[]} */
|
|
export default [
|
|
{ ignores: ["**/dist/**"] },
|
|
{ files: ["**/*.{js,mjs,cjs,ts}"] },
|
|
{ languageOptions: { globals: { ...globals.browser, ...globals.node } } },
|
|
pluginJs.configs.recommended,
|
|
...tseslint.configs.recommended,
|
|
];
|