Skip to content

Commit

Permalink
lint(test): test formatting/linting scripts added EVM-216
Browse files Browse the repository at this point in the history
  • Loading branch information
benceharomi committed Sep 18, 2023
1 parent 0bafc49 commit b4f1579
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions ethereum/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,15 @@
"test:foundry": "hardhat solpp && forge test",
"test:fork": "CONTRACT_TESTS=1 TEST_CONTRACTS_FORK=1 yarn run hardhat test test/unit_tests/*.fork.ts --network hardhat",
"lint": "yarn lint:sol && yarn prettier:check",
"lint:sol": "solhint --max-warnings 29 contracts/**/*.sol",
"prettier:check": "prettier --check contracts/**/*.sol",
"prettier:write": "prettier --write contracts/**/*.sol",
"lint:sol-contracts": "solhint --max-warnings 29 contracts/**/*.sol",
"lint:sol-tests": "solhint --max-warnings 0 test/**/*.sol",
"lint:sol": "yarn lint:sol-contracts && yarn lint:sol-tests",
"prettier:check-contracts": "prettier --check contracts/**/*.sol",
"prettier:check-tests": "prettier --check test/**/*.sol",
"prettier:check": "yarn prettier:check-contracts && yarn prettier:check-tests",
"prettier:write-contracts": "prettier --write contracts/**/*.sol",
"prettier:write-tests": "prettier --write test/**/*.sol",
"prettier:write": "yarn prettier:write-contracts && yarn prettier:write-tests",
"deploy-no-build": "ts-node scripts/deploy.ts",
"deploy-weth-bridges": "ts-node scripts/deploy-weth-bridges.ts",
"initialize-weth-bridges": "ts-node scripts/initialize-weth-bridges.ts",
Expand Down

0 comments on commit b4f1579

Please sign in to comment.