Skip to content
This repository was archived by the owner on Apr 6, 2020. It is now read-only.

Commit 0a0fcb1

Browse files
authored
Merge pull request #50 from ethereumjs/org-links-and-git-hooks
Org links and git hooks
2 parents 106ac94 + d2da7f9 commit 0a0fcb1

File tree

3 files changed

+21
-0
lines changed

3 files changed

+21
-0
lines changed

.github/contributing.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Contributing
2+
3+
Great that you want to contribute to the `EthereumJS` [ecosystem](https://ethereumjs.readthedocs.io/en/latest/introduction.html). `EthereumJS` is managed by the Ethereum Foundation and largely driven by the wider community. Everyone is welcome to join the effort and help to improve on the libraries (see our [Code of Conduct](https://ethereumjs.readthedocs.io/en/latest/code_of_conduct.html) 🌷).
4+
5+
We have written up some [Contribution Guidelines](https://ethereumjs.readthedocs.io/en/latest/contributing.html#how-to-start) to help you getting started.
6+
7+
These include information on how we work with **Git** and how our **general workflow** and **technical setup** looks like (stuff like language, tooling, code quality and style).
8+
9+
Happy Coding! 👾 😀 💻

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,12 @@ const mainnetGenesisState = genesisStates.genesisStateByName('mainnet')
145145
const mainnetGenesisState = genesisStates.genesisStateById(1) // alternative via network Id
146146
```
147147

148+
# EthereumJS
149+
150+
See our organizational [documentation](https://ethereumjs.readthedocs.io) for an introduction to `EthereumJS` as well as information on current standards and best practices.
151+
152+
If you want to join for work or do improvements on the libraries have a look at our [contribution guidelines](https://ethereumjs.readthedocs.io/en/latest/contributing.html).
153+
148154
# LICENSE
149155

150156
[MIT](https://opensource.org/licenses/MIT)

package.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@
2424
"test:fix": "npm run lint:fix && npm run unitTests",
2525
"docs:build": "typedoc --out docs --excludePrivate --excludeExternals --mode file --readme none --theme markdown --mdEngine github src/*.ts src/genesisStates/*.ts"
2626
},
27+
"husky": {
28+
"hooks": {
29+
"pre-push": "npm run lint"
30+
}
31+
},
2732
"repository": {
2833
"type": "git",
2934
"url": "git+https://github.com/ethereumjs/ethereumjs-common.git"
@@ -51,6 +56,7 @@
5156
"@types/node": "^10.12.2",
5257
"@types/tape": "^4.2.33",
5358
"coveralls": "^3.0.1",
59+
"husky": "^2.1.0",
5460
"nyc": "^11.7.1",
5561
"prettier": "^1.15.3",
5662
"tape": "^4.9.2",

0 commit comments

Comments
 (0)