Transpile 87bb8135
Showing
.prettierrc
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
| ... | ... | @@ -18,10 +18,11 @@ |
| "docs:watch": "npm run docs watch contracts 'docs/*.hbs'", | ||
| "prepare-docs": "scripts/prepare-docs.sh", | ||
| "lint": "npm run lint:js && npm run lint:sol", | ||
| "lint:fix": "npm run lint:js:fix", | ||
| "lint:fix": "npm run lint:js:fix && npm run lint:sol:fix", | ||
| "lint:js": "eslint --ignore-path .gitignore .", | ||
| "lint:js:fix": "eslint --ignore-path .gitignore . --fix", | ||
| "lint:sol": "echo 'solidity linter currently disabled' # solhint --max-warnings 0 \"contracts/**/*.sol\"", | ||
| "lint:sol": "solhint 'contracts/**/*.sol' && prettier -c 'contracts/**/*.sol'", | ||
| "lint:sol:fix": "prettier --write \"contracts/**/*.sol\"", | ||
| "prepublish": "rimraf build contracts/build artifacts cache", | ||
| "prepare": "env COMPILE_MODE=production npm run compile", | ||
| "prepack": "scripts/prepack.sh", | ||
| ... | ... | @@ -49,7 +50,6 @@ |
| }, | ||
| "homepage": "https://openzeppelin.com/contracts/", | ||
| "devDependencies": { | ||
| "@nomiclabs/hardhat-solhint": "^2.0.0", | ||
| "@nomiclabs/hardhat-truffle5": "^2.0.0", | ||
| "@nomiclabs/hardhat-web3": "^2.0.0", | ||
| "@openzeppelin/docs-utils": "^0.1.0", | ||
| ... | ... | @@ -73,8 +73,10 @@ |
| "merkletreejs": "^0.2.13", | ||
| "micromatch": "^4.0.2", | ||
| "mocha": "^8.0.1", | ||
| "prettier": "^2.3.0", | ||
| "prettier-plugin-solidity": "^1.0.0-beta.13", | ||
| "rimraf": "^3.0.2", | ||
| "solhint": "^3.2.0", | ||
| "solhint": "^3.3.6", | ||
| "solidity-coverage": "^0.7.11", | ||
| "solidity-docgen": "^0.5.3", | ||
| "web3": "^1.3.0", | ||
| ... | ... |
Please
register
or
sign in
to comment