Skip to content

Commit

Permalink
Add KeyValue contract support
Browse files Browse the repository at this point in the history
  • Loading branch information
earrietadev committed Oct 25, 2024
1 parent 9482412 commit ae4c0d1
Show file tree
Hide file tree
Showing 7 changed files with 2,566 additions and 1,936 deletions.
30 changes: 20 additions & 10 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,32 @@
{
"root": true,
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "tsconfig.json",
"ecmaVersion": 2020,
"sourceType": "module"
},
"plugins": ["@typescript-eslint/eslint-plugin", "jest"],
"extends": ["plugin:@typescript-eslint/recommended", "plugin:prettier/recommended"],
"root": true,
"plugins": ["@typescript-eslint"],
"env": {
"node": true,
"jest": true
"browser": true
},
"ignorePatterns": [".eslintrc.js"],
"rules": {
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/interface-name-prefix": "off",
"no-prototype-builtins": "off",
"@typescript-eslint/no-inferrable-types": "off",
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-explicit-any": "off"
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-unused-vars": [
"warn",
{
"argsIgnorePattern": "^_"
}
]
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"js-sha3": "^0.9.3"
},
"devDependencies": {
"@stellar/stellar-sdk": "^11.2.2",
"@stellar/stellar-sdk": "^12.3.0",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
Expand Down
Loading

0 comments on commit ae4c0d1

Please sign in to comment.