Skip to content

Commit

Permalink
ZK-559: Add shielder-sdk-crypto package (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
kroist authored Jan 8, 2025
1 parent 2bb3528 commit 32685c8
Show file tree
Hide file tree
Showing 11 changed files with 10,439 additions and 0 deletions.
1 change: 1 addition & 0 deletions ts/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
dist/
3 changes: 3 additions & 0 deletions ts/.prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"trailingComma": "none"
}
40 changes: 40 additions & 0 deletions ts/eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
import eslint from "@eslint/js";
import tseslint from "typescript-eslint";
import globals from "globals";
import eslintPluginPrettierRecommended from "eslint-plugin-prettier/recommended";

export default tseslint.config(
eslint.configs.recommended,
...tseslint.configs.recommendedTypeChecked,
eslintPluginPrettierRecommended,
{
languageOptions: {
globals: {
...globals.jest,
...globals.node,
},
parserOptions: {
projectService: true,
tsconfigRootDir: import.meta.dirname,
},
},
},
{
ignores: [
"dist/",
"src/_generated/",
"eslint.config.mjs",
"update-imports.mjs",
],
},
{
rules: {
"@typescript-eslint/unbound-method": [
"error",
{
ignoreStatic: true,
},
],
},
},
);
Loading

0 comments on commit 32685c8

Please sign in to comment.