Skip to content

Commit

Permalink
Initial implementation (#1)
Browse files Browse the repository at this point in the history
* feat: initial implementation
  • Loading branch information
satazor authored and ivolimasilva committed Nov 20, 2019
1 parent cb82eeb commit 3e76557
Show file tree
Hide file tree
Showing 43 changed files with 13,744 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .commitlintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"extends": [
"@commitlint/config-conventional"
]
}
12 changes: 12 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"root": true,
"extends":[
"eslint-config-moxy/es9",
"eslint-config-moxy/addons/babel-parser",
"eslint-config-moxy/addons/browser",
"eslint-config-moxy/addons/node",
"eslint-config-moxy/addons/es-modules",
"eslint-config-moxy/addons/react",
"eslint-config-moxy/addons/jest"
]
}
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
node_modules
npm-debug.*
coverage/
lib/
es/
6 changes: 6 additions & 0 deletions .huskyrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
6 changes: 6 additions & 0 deletions .lintstagedrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"*.js": [
"eslint",
"git add"
]
}
8 changes: 8 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
language: node_js
node_js:
- "node"
- "lts/*"
# Report coverage
after_success:
- "npm i codecov"
- "node_modules/.bin/codecov"
Loading

0 comments on commit 3e76557

Please sign in to comment.