Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Code formatting #16

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions safe-eip7702-backend/.prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"trailingComma": "none",
"tabWidth": 2,
"semi": false,
"singleQuote": true
}
213 changes: 212 additions & 1 deletion safe-eip7702-backend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion safe-eip7702-backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"start": "ts-node src/index.ts",
"build": "tsc",
"serve": "node dist/index.js",
"dev": "nodemon src/index.ts"
"dev": "nodemon src/index.ts",
"fmt": "prettier src/{*,**/*}.ts -w"
},
"keywords": [],
"author": "",
Expand All @@ -21,6 +22,7 @@
"dotenv": "^16.4.5",
"express": "^4.21.0",
"nodemon": "^3.1.7",
"prettier": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"yargs": "^17.7.2"
Expand Down
Loading