mirror of
https://github.com/vacp2p/foundry-template.git
synced 2025-02-18 18:26:49 +00:00
* use solhint-community fork We're trying to keep solhint afloat with a fork, and done some work on it so far, mainly the no-unused-imports rule. Any feedback is appreciated, hope this helps ✨ see announcement: https://blog.capu.tech/announcing-solhint-community.html * docs: update README --------- Co-authored-by: Paul Razvan Berg <paul.razvan.berg@gmail.com>
31 lines
798 B
JSON
31 lines
798 B
JSON
{
|
|
"name": "@prb/foundry-template",
|
|
"description": "Foundry-based template for developing Solidity smart contracts",
|
|
"version": "1.0.0",
|
|
"author": {
|
|
"name": "Paul Razvan Berg",
|
|
"url": "https://github.com/PaulRBerg"
|
|
},
|
|
"devDependencies": {
|
|
"prettier": "^2.8.7",
|
|
"solhint-community": "^3.5.0"
|
|
},
|
|
"keywords": [
|
|
"blockchain",
|
|
"ethereum",
|
|
"forge",
|
|
"foundry",
|
|
"smart-contracts",
|
|
"solidity",
|
|
"template"
|
|
],
|
|
"private": true,
|
|
"scripts": {
|
|
"clean": "rm -rf cache out",
|
|
"lint": "pnpm lint:sol && pnpm prettier:check",
|
|
"lint:sol": "forge fmt --check && pnpm solhint \"{script,src,test}/**/*.sol\"",
|
|
"prettier:check": "prettier --check \"**/*.{json,md,yml}\"",
|
|
"prettier:write": "prettier --write \"**/*.{json,md,yml}\""
|
|
}
|
|
}
|