Skip to content

Commit

Permalink
chore(*): remove old files and add tooling config
Browse files Browse the repository at this point in the history
  • Loading branch information
jakehamilton committed Sep 8, 2020
1 parent 6827248 commit 3e542de
Show file tree
Hide file tree
Showing 16 changed files with 2,175 additions and 6,634 deletions.
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package-lock.json
3 changes: 3 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"tabWidth": 4
}
1,365 changes: 1,365 additions & 0 deletions package-lock.json

Large diffs are not rendered by default.

24 changes: 19 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,21 @@
{
"name": "root",
"private": true,
"devDependencies": {
"lerna": "^3.22.1"
}
"name": "root",
"private": true,
"husky": {
"hooks": {
"pre-commit": "lerna run --concurrency 1 --stream precommit --since HEAD --exclude-dependents",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"husky": "^4.3.0",
"lerna": "^3.22.1"
}
}
Loading

0 comments on commit 3e542de

Please sign in to comment.